summaryrefslogtreecommitdiff
path: root/test/files/res
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2015-06-25 16:53:46 +0200
committerLukas Rytz <lukas.rytz@gmail.com>2015-06-26 11:27:22 +0200
commit0a25d8b9f874334bff716f76e71fa4e4a50d43a6 (patch)
treed00db146b52452787a54e9c8cb673d36ec381ad1 /test/files/res
parentc8e7fdcfb20a2c9bf7345c998b2a2a4c174c4ebc (diff)
downloadscala-0a25d8b9f874334bff716f76e71fa4e4a50d43a6.tar.gz
scala-0a25d8b9f874334bff716f76e71fa4e4a50d43a6.tar.bz2
scala-0a25d8b9f874334bff716f76e71fa4e4a50d43a6.zip
SI-6613 fixed in GenBCode
It was fixed in GenASM in 44807a7852.
Diffstat (limited to 'test/files/res')
-rw-r--r--test/files/res/t6613.check5
-rw-r--r--test/files/res/t6613.res3
-rw-r--r--test/files/res/t6613/Broken.scala1
-rw-r--r--test/files/res/t6613/Enummy.java1
4 files changed, 10 insertions, 0 deletions
diff --git a/test/files/res/t6613.check b/test/files/res/t6613.check
new file mode 100644
index 0000000000..bbd9331b16
--- /dev/null
+++ b/test/files/res/t6613.check
@@ -0,0 +1,5 @@
+
+nsc>
+nsc>
+nsc>
+nsc>
diff --git a/test/files/res/t6613.res b/test/files/res/t6613.res
new file mode 100644
index 0000000000..e3fa000fdd
--- /dev/null
+++ b/test/files/res/t6613.res
@@ -0,0 +1,3 @@
+t6613/Enummy.java
+t6613/Broken.scala
+t6613/Broken.scala
diff --git a/test/files/res/t6613/Broken.scala b/test/files/res/t6613/Broken.scala
new file mode 100644
index 0000000000..9bcd12dbe1
--- /dev/null
+++ b/test/files/res/t6613/Broken.scala
@@ -0,0 +1 @@
+class Broken() { def broken() = Enummy.Broke.CHIP }
diff --git a/test/files/res/t6613/Enummy.java b/test/files/res/t6613/Enummy.java
new file mode 100644
index 0000000000..1863ef1297
--- /dev/null
+++ b/test/files/res/t6613/Enummy.java
@@ -0,0 +1 @@
+public class Enummy { public enum Broke { SHARD, CHIP } }