Tests for import class action added

This commit is contained in:
svtk
2011-09-28 11:58:55 +04:00
parent a06aa17a5f
commit 70d4826317
18 changed files with 158 additions and 14 deletions
@@ -0,0 +1,10 @@
// "Remove initializer from property" "true"
namespace a
import java.util.Collections
class M {
trait A {
abstract val l = <caret>Collections.emptyList<Int>()
}
}