summaryrefslogtreecommitdiff
path: root/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/lookupTracker/jvm/expressionType/genericType.kt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/kotlin/jps/jps-plugin/tests/testData/incremental/lookupTracker/jvm/expressionType/genericType.kt')
-rw-r--r--plugins/kotlin/jps/jps-plugin/tests/testData/incremental/lookupTracker/jvm/expressionType/genericType.kt15
1 files changed, 0 insertions, 15 deletions
diff --git a/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/lookupTracker/jvm/expressionType/genericType.kt b/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/lookupTracker/jvm/expressionType/genericType.kt
deleted file mode 100644
index dd0722893b2a..000000000000
--- a/plugins/kotlin/jps/jps-plugin/tests/testData/incremental/lookupTracker/jvm/expressionType/genericType.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package foo
-
-// From KT-10772 Problem with daemon on Idea 15.0.3 & 1-dev-25
-
-/*p:foo*/fun <T> identity(): (T) -> T = /*p:kotlin(Function1) p:kotlin(Nothing)*/null as (T) -> T
-
-/*p:foo*/fun <T> compute(f: () -> T) {
- val result = f()
-}
-
-/*p:foo*/class Bar<T>(val t: T) {
- init {
- val a = /*c:foo.Bar c:foo.Bar(T)*/t
- }
-}