smart completion tests -> community
[fedora-idea.git] / java / java-tests / testData / codeInsight / completion / smartType / InstanceMethodParametersFromStaticContext.java
bloba7dc2e0efc250ea78a23b02c9961b1864c0214aa
1 public class MyFirstTestClassBoo {
3 static void foo(int a) {}
5 void foo(String s) {}
7 static {
8 int xxy;
9 String xxz;
10 foo(xx<caret>)