blob: b61db317d0b526718c768ba58df64f796b38a3f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package test3;
public class InsertBeforeType {
String value = "";
void foo() { value += ":"; }
public int test() {
foo();
System.out.println(value);
return value.length();
}
}
|