summaryrefslogtreecommitdiff
path: root/test/files/pos
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-10-15 13:17:20 +0000
committerpaltherr <paltherr@epfl.ch>2003-10-15 13:17:20 +0000
commit99b4e7dc35d230c0b5173cfd4c0095499f026a57 (patch)
tree29e3d3cc458efabd1b4b349ecf17eaf60731725c /test/files/pos
parent1a3084b2099a939f596e0ccb77f61dee90aeacd0 (diff)
downloadscala-99b4e7dc35d230c0b5173cfd4c0095499f026a57.tar.gz
scala-99b4e7dc35d230c0b5173cfd4c0095499f026a57.tar.bz2
scala-99b4e7dc35d230c0b5173cfd4c0095499f026a57.zip
- Added bug175
Diffstat (limited to 'test/files/pos')
-rw-r--r--test/files/pos/bug175.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/files/pos/bug175.scala b/test/files/pos/bug175.scala
new file mode 100644
index 0000000000..2ef26589c2
--- /dev/null
+++ b/test/files/pos/bug175.scala
@@ -0,0 +1,5 @@
+// $Id$
+
+abstract class C {
+ def this(x: Unit) = { this() }
+}