aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/reify_ann4.check
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/reify_ann4.check')
-rw-r--r--tests/pending/run/reify_ann4.check32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/pending/run/reify_ann4.check b/tests/pending/run/reify_ann4.check
deleted file mode 100644
index 8bf5fe324..000000000
--- a/tests/pending/run/reify_ann4.check
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- class D extends StaticAnnotation {
- def <init>() = {
- super.<init>();
- ()
- }
- };
- class C extends AnyRef {
- def <init>() = {
- super.<init>();
- ()
- }
- };
- val c1 = new C @D();
- ()
-}
-{
- class D extends scala.annotation.Annotation with scala.annotation.StaticAnnotation {
- def <init>(): D = {
- D.super.<init>();
- ()
- }
- };
- class C extends AnyRef {
- def <init>(): C = {
- C.super.<init>();
- ()
- }
- };
- val c1: C = new C @D();
- ()
-}