blob: 5bf439cb4378a48e166a0c5e5d4e9dd464d0fa3a [file] [log] [blame]
fun testSetField(a: Any, b: Any) {
a as JCell<String> /*~> Unit */
b as String /*~> Unit */
a /*as JCell<String> */.#value = b /*as String */
}
fun testGetField(a: Any): String {
a as JCell<String> /*~> Unit */
return a /*as JCell<String> */(super<JCell>).#value /*!! String */
}