summaryrefslogtreecommitdiff
path: root/test/files/scalap/typeAnnotations.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/scalap/typeAnnotations.check')
-rw-r--r--test/files/scalap/typeAnnotations.check8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/scalap/typeAnnotations.check b/test/files/scalap/typeAnnotations.check
new file mode 100644
index 0000000000..cba69f8e41
--- /dev/null
+++ b/test/files/scalap/typeAnnotations.check
@@ -0,0 +1,8 @@
+abstract class TypeAnnotations[@scala.specialized R] extends scala.AnyRef {
+ def this() = { /* compiled code */ }
+ @scala.specialized
+ val x: scala.Int = { /* compiled code */ }
+ @scala.specialized
+ type T
+ def compose[@scala.specialized A](x: A, y: R): A = { /* compiled code */ }
+}