mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
- support shadowing module imports by package-on-demand GitOrigin-RevId: 643fc10bcbfee2f1d41ec02e624b30bc3a48e4bb
6 lines
258 B
Java
6 lines
258 B
Java
import module my.source.moduleB;
|
|
import module my.source.moduleA;
|
|
class AmbiguousModuleImport {
|
|
<error descr="Reference to 'Imported' is ambiguous, both 'my.source.moduleB.Imported' and 'my.source.moduleA.Imported' match">Imported</error> <caret>module;
|
|
}
|