VariablesCompletionTest -> community

This commit is contained in:
peter
2009-10-15 19:04:17 +01:00
parent 5b6d7557a1
commit 98e865fe67
37 changed files with 525 additions and 0 deletions
@@ -0,0 +1,15 @@
package codeInsight.completion.variables.locals;
/**
* Created by IntelliJ IDEA.
* User: igork
* Date: Nov 25, 2002
* Time: 3:10:08 PM
* To change this template use Options | File Templates.
*/
public class TestSource3 {
int aaa = 0;
public static void foo(){
int abc = 0, bac = abc<caret>
}
}