Test data: replace Exception with Thread as the former is resolved not from java.lang anymore.

This commit is contained in:
Ilya Gorbunov
2016-08-12 20:21:15 +03:00
parent 570ac8b821
commit 3115aa1dc2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,6 +3,6 @@ package a
class M {
interface A {
abstract val e = <caret>Exception("")
abstract val e = <caret>Thread()
}
}
@@ -3,6 +3,6 @@ package a
class M {
interface A {
abstract val e: Exception<caret>
abstract val e: Thread<caret>
}
}