blob: 42e0f1c38aa47647709d215826846721d7304596 [file] [log] [blame]
class ConstructorUsages {
ConstructorUsages() {
}
void foo() {
BlahBlah<ConstructorUsages> blahBlah = ConstructorUsages::new;
}
}
interface BlahBlah<T> {
T foo();
}