This commit is contained in:
anna
2011-06-17 20:53:45 +04:00
parent 1de0cbfc78
commit a6bb7d03d2
3 changed files with 13 additions and 2 deletions
@@ -5,5 +5,10 @@
<line>5</line>
<description>Default constructor in C is deprecated</description>
</problem>
<problem>
<file>Test.java</file>
<line>10</line>
<description>Default constructor in C is deprecated</description>
</problem>
</problems>
@@ -4,3 +4,9 @@ class C {
class D extends C {
}
class P {
public static void main(String[] args) {
new C(){};
}
}