Files
kotlin-fork/j2k/testData/fileOrElement/blocks/Blocks.java
T
2019-04-03 11:24:19 +03:00

16 lines
147 B
Java
Vendored

//method
void foo() {
{
int a = 1;
bar(a);
}
{
int a = 2;
bar(a);
}
{
bar(3);
}
}