Checked that KT-3596 is not reproducible

This commit is contained in:
Valentin Kipyatkov
2014-10-08 20:28:31 +04:00
parent e1a84802f2
commit cff0c35987
7 changed files with 55 additions and 5 deletions
@@ -0,0 +1,13 @@
package foo
import foo.Foo.*
enum class Foo {
AAA
}
fun take(a: Any){}
fun test() {
take(A<caret>)
}
@@ -0,0 +1,13 @@
package foo
import foo.Foo.*
enum class Foo {
AAA
}
fun take(a: Any){}
fun test() {
take(AAA<caret>)
}