11 lines
162 B
Text
11 lines
162 B
Text
class Foo {
|
|
fun bar(self) {}
|
|
}
|
|
|
|
fun test() {
|
|
let obj = new Foo {};
|
|
let f = obj.bar;
|
|
}
|
|
|
|
// @expect-errors:
|
|
// | 7:6: methods cannot be assigned to variables
|