mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
test++
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
class CommandQueue {
|
||||
|
||||
void f(CommandManager commandManager) {
|
||||
commandManager.g();
|
||||
}
|
||||
}
|
||||
|
||||
class CommandManager {
|
||||
|
||||
void g() {
|
||||
|
||||
}
|
||||
|
||||
CommandQueue getCommandQueue() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
class Application {
|
||||
CommandManager myManager;
|
||||
{
|
||||
myManager.getCommandQueue().f(myManager);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user