assertions added, annotations for method parameter

This commit is contained in:
Alexey Kudravtsev
2012-01-20 13:40:07 +04:00
parent eda94d1048
commit f5ebabb673
3 changed files with 58 additions and 10 deletions
@@ -239,4 +239,9 @@ public class X {
new javax.swing.JLabel("text", 3);
}
}
static class OverrideX extends X {
void f(int x) {
super.f(x);
}
}
}