Skip to content

Commit 8064fcc

Browse files
demiurg906Space Cloud
authored andcommitted
[Test] Add a test for KT-80257
^KT-80257 Obsolete
1 parent 0561560 commit 8064fcc

File tree

8 files changed

+54
-0
lines changed

8 files changed

+54
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package foo
2+
3+
import org.jetbrains.kotlin.plugin.sandbox.DummyFunction
4+
5+
@DummyFunction
6+
class A
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package foo
2+
3+
class A
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package foo
2+
3+
import org.jetbrains.kotlin.plugin.sandbox.DummyFunction
4+
5+
@DummyFunction
6+
class B
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package foo
2+
3+
import org.jetbrains.kotlin.plugin.sandbox.DummyFunction
4+
5+
@DummyFunction
6+
class C
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
================ Step #1 =================
2+
3+
Compiling files:
4+
src/A.kt
5+
src/B.kt
6+
src/usage.kt
7+
End of files
8+
Exit code: OK
9+
10+
================ Step #2 =================
11+
12+
Compiling files:
13+
src/B.kt
14+
src/C.kt
15+
End of files
16+
Exit code: OK
17+
18+
------------------------------------------
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package bar
2+
3+
fun dummyB(any: Any) {}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package foo
2+
3+
import bar.*
4+
5+
fun test() {
6+
dummyB("hello")
7+
}

plugins/plugin-sandbox/plugin-sandbox-ic-test/tests-gen/org/jetbrains/kotlin/incremental/IncrementalK2JvmWithPluginCompilerRunnerTestGenerated.java

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)