https://github.com/JetBrains/intellij-community/pull/295master
parent
ee740aa056
commit
766fc1390d
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,6 @@ |
||||
package pkg; |
||||
|
||||
class TestShadowing { |
||||
ext.Shadow.B instanceOfB = new ext.Shadow.B(); |
||||
} |
||||
|
@ -0,0 +1,6 @@ |
||||
package ext; |
||||
|
||||
// companion class for pkg/TestShadowing.java
|
||||
public class Shadow { |
||||
public static class B { } |
||||
} |
@ -0,0 +1,4 @@ |
||||
package pkg; |
||||
|
||||
// companion class for pkg/TestShadowing.java
|
||||
public class Shadow { } |
@ -0,0 +1,5 @@ |
||||
package pkg; |
||||
|
||||
class TestShadowing { |
||||
ext.Shadow.B instanceOfB = new ext.Shadow.B(); |
||||
} |
Loading…
Reference in new issue