From 0b19aba1b9636c0f092c316892f55f1f8b4bd94e Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Sun, 12 Jul 2015 19:23:26 +1000 Subject: SI-9393 Temporarily disable two assertions in GenBCode These cause a crash in the build of Play. We should try to bring these back once we have suitable annotation awareness. Perhaps they should only be `devWarning`-s, though. --- test/files/pos/t9393/Named.java | 3 +++ test/files/pos/t9393/NamedImpl.java | 15 +++++++++++++++ test/files/pos/t9393/test.scala | 3 +++ 3 files changed, 21 insertions(+) create mode 100644 test/files/pos/t9393/Named.java create mode 100644 test/files/pos/t9393/NamedImpl.java create mode 100644 test/files/pos/t9393/test.scala (limited to 'test') diff --git a/test/files/pos/t9393/Named.java b/test/files/pos/t9393/Named.java new file mode 100644 index 0000000000..144ddbf26e --- /dev/null +++ b/test/files/pos/t9393/Named.java @@ -0,0 +1,3 @@ +package bug; + +public @interface Named {} diff --git a/test/files/pos/t9393/NamedImpl.java b/test/files/pos/t9393/NamedImpl.java new file mode 100644 index 0000000000..7918739c2b --- /dev/null +++ b/test/files/pos/t9393/NamedImpl.java @@ -0,0 +1,15 @@ +/* + * Copyright (C) 2009-2015 Typesafe Inc. + */ +package bug; + +import bug.Named; +import java.io.Serializable; +import java.lang.annotation.Annotation; + +public class NamedImpl implements Named { + + public Class annotationType() { + return null; + } +} diff --git a/test/files/pos/t9393/test.scala b/test/files/pos/t9393/test.scala new file mode 100644 index 0000000000..4df0476c98 --- /dev/null +++ b/test/files/pos/t9393/test.scala @@ -0,0 +1,3 @@ +class C { + new bug.NamedImpl +} -- cgit v1.2.3