summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/general/AccessToInternalInProductionFromTests/test/test.kt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/kotlin/jps/jps-plugin/tests/testData/general/AccessToInternalInProductionFromTests/test/test.kt')
-rw-r--r--plugins/kotlin/jps/jps-plugin/tests/testData/general/AccessToInternalInProductionFromTests/test/test.kt25
1 files changed, 0 insertions, 25 deletions
diff --git a/plugins/kotlin/jps/jps-plugin/tests/testData/general/AccessToInternalInProductionFromTests/test/test.kt b/plugins/kotlin/jps/jps-plugin/tests/testData/general/AccessToInternalInProductionFromTests/test/test.kt
deleted file mode 100644
index 9d74548c0582..000000000000
--- a/plugins/kotlin/jps/jps-plugin/tests/testData/general/AccessToInternalInProductionFromTests/test/test.kt
+++ /dev/null
@@ -1,25 +0,0 @@
-@file:InternalFileAnnotation
-
-@InternalFunctionAnnotation
-fun test() {
- foo()
- internalBar()
-
- @InternalClassAnnotation
- class Local {
- @InternalFunctionAnnotation
- fun foo() {}
- }
-}
-
-@InternalClassAnnotation
-class Class {
- @InternalFunctionAnnotation
- fun foo() {}
-
- @InternalClassAnnotation
- class Nested {
- @InternalFunctionAnnotation
- fun foo() {}
- }
-}