Light class test: avoid checking method visibility when NoLaziness is not specified

Allows to avoid putting NoLaziness flag on every test that mentions 'override' modifier
This commit is contained in:
Pavel V. Talanov
2017-04-05 16:59:13 +03:00
parent 32d3a1b4c9
commit 69c250a1b7
4 changed files with 25 additions and 22 deletions
@@ -8,6 +8,4 @@ interface Tr {
class C: Tr {
override fun foo() = 1
override val v = 1
}
// LAZINESS:NoLaziness
}