diff options
Diffstat (limited to 'tests/java5/annotations/binding/complexExample/A.java')
-rw-r--r-- | tests/java5/annotations/binding/complexExample/A.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/java5/annotations/binding/complexExample/A.java b/tests/java5/annotations/binding/complexExample/A.java index 92ffd35af..40a220538 100644 --- a/tests/java5/annotations/binding/complexExample/A.java +++ b/tests/java5/annotations/binding/complexExample/A.java @@ -7,6 +7,8 @@ public class A { public static void main(String []argv) { new A().a(); new B().b(); + if ((new A()) instanceof java.io.Serializable) + throw new RuntimeException("A should never be serializable"); } @Color("blue") |