summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-09-29 15:39:20 +0000
committerpaltherr <paltherr@epfl.ch>2003-09-29 15:39:20 +0000
commit5d8b5d80bbfc86d1a11823e93d5b51bc1c061243 (patch)
tree0ceaa84b08b1f10cf0021ccf268f96718b9d0348 /test/files/pos
parent7f76c81a3e71954f6fef3a445d6c3ac327494a27 (diff)
downloadscala-5d8b5d80bbfc86d1a11823e93d5b51bc1c061243.tar.gz
scala-5d8b5d80bbfc86d1a11823e93d5b51bc1c061243.tar.bz2
scala-5d8b5d80bbfc86d1a11823e93d5b51bc1c061243.zip
- Added bug121.scala
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/bug121.scala3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/pos/bug121.scala b/test/files/pos/bug121.scala
new file mode 100644
index 0000000000..78ddc41ee5
--- /dev/null
+++ b/test/files/pos/bug121.scala
@@ -0,0 +1,3 @@
+class Bug121_B(b: Array[Byte]) {
+ def get(x: Int): Byte = return b(x);
+}