Files
kotlin/compiler/testData/repl/classes/classReferencesVal.repl
Pavel V. Talanov ad58617753 Script refactoring, codegen tests: change test data according to semantics change
Add some new tests for uncovered cases
2015-11-19 22:57:01 +03:00

7 lines
82 B
Plaintext
Vendored

>>> val c = "OK"
>>> inner class A {
... fun foo() = c
... }
>>> A().foo()
OK