blob: f98ddfcf2ca48ed3a6e8783a52626a071631a271 [file] [log] [blame]
xxx = 5 //goes to binding
jjj = 6 //goes to binding
int p = 5;
/// to be extracted BEGIN
<selection>int iii = 2;
println(iii + xxx + jjj);
int yyy = xxx + p</selection>
/// to be extracted END
System.out.println(yyy);
-----
input:
xxx
jjj
p
output:
yyy