Add tests for EA-52767 and KT-4366: "java.lang.IllegalArgumentException: Could not find a classifier for "...

This commit is contained in:
Nikolay Krasko
2014-01-15 14:53:14 +04:00
parent 07229b23d9
commit 0d141d959a
13 changed files with 183 additions and 8 deletions
@@ -0,0 +1,6 @@
val a: <caret>Number? = null
// CONTEXT: public abstract fun toDouble() : <caret>Double
// RUNTIME
// REF: (jet).Double
@@ -0,0 +1,8 @@
import inlibrary.test.*
val a: <caret>ReferenceTest? = null
// CONTEXT: val test: <caret>Test? = null
// WITH_LIBRARY: /resolve/referenceInLib/inLibrarySource
// REF: (inlibrary.test).Test
@@ -0,0 +1,5 @@
package inlibrary.test
class ReferenceTest {
val test: Test? = null
}
@@ -0,0 +1,3 @@
package inlibrary.test
trait Test