search for method references during constructor search (IDEA-92804)

This commit is contained in:
anna
2012-10-15 16:20:55 +02:00
parent 30ac225758
commit 1c0933b830
3 changed files with 78 additions and 0 deletions
@@ -0,0 +1,11 @@
class ConstructorUsages {
ConstructorUsages() {
}
void foo() {
BlahBlah<ConstructorUsages> blahBlah = ConstructorUsages::new;
}
}
interface BlahBlah<T> {
T foo();
}