One more test for import nested classes setting
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
class A {
|
||||
public class B {
|
||||
public B(String s) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// IMPORT_NESTED_CLASSES: true
|
||||
|
||||
fun bar(s: String) {
|
||||
<selection>val t: A.B = A().B(s)</selection>
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// IMPORT_NESTED_CLASSES: true
|
||||
|
||||
import A.B
|
||||
|
||||
fun bar(s: String) {
|
||||
val t: B = A().B(s)
|
||||
}
|
||||
Reference in New Issue
Block a user