blob: 6bf7b8d8d5868595f6ea87994355417eae61c61d [file] [log] [blame]
class Test<T> {
static void foo() {}
}
class Bar {
void test() {
Runnable runnable = () -> Test.foo();
}
}