blob: 2fa312f054ea7df9b4c13779f276202cabdc272f [file] [log] [blame]
class CommandQueue {
void f() {
}
}
class CommandManager {
void g() {
}
CommandQueue getCommandQueue() {
return null;
}
}
class Application {
CommandManager myManager;
{
myManager.getCommandQueue().f();
}
}