summaryrefslogtreecommitdiff
path: root/test/files/scalap/abstractMethod.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/scalap/abstractMethod.check')
-rw-r--r--test/files/scalap/abstractMethod.check5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/scalap/abstractMethod.check b/test/files/scalap/abstractMethod.check
new file mode 100644
index 0000000000..40fa02d408
--- /dev/null
+++ b/test/files/scalap/abstractMethod.check
@@ -0,0 +1,5 @@
+trait AbstractMethod extends scala.AnyRef {
+ def $init$() : scala.Unit = { /* compiled code */ }
+ def arity : scala.Int
+ def isCool : scala.Boolean = { /* compiled code */ }
+}