diff --git a/compiler/testData/asJava/lightClasses/script/HelloWorld.kts b/compiler/testData/asJava/lightClasses/script/HelloWorld.kts index dc1115e5f26..6a749c71ac9 100644 --- a/compiler/testData/asJava/lightClasses/script/HelloWorld.kts +++ b/compiler/testData/asJava/lightClasses/script/HelloWorld.kts @@ -1,3 +1,5 @@ // HelloWorld -println("Hello world!") \ No newline at end of file +println("Hello world!") + +// LAZINESS:NoLaziness \ No newline at end of file diff --git a/compiler/testData/asJava/lightClasses/script/InnerClasses.kts b/compiler/testData/asJava/lightClasses/script/InnerClasses.kts index 7a944057b52..7535d2d8041 100644 --- a/compiler/testData/asJava/lightClasses/script/InnerClasses.kts +++ b/compiler/testData/asJava/lightClasses/script/InnerClasses.kts @@ -10,4 +10,6 @@ class Bar(val a: Int) { } } -} \ No newline at end of file +} + +// LAZINESS:NoLaziness \ No newline at end of file