summaryrefslogtreecommitdiff
path: root/test/files/neg/constrs.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/constrs.scala')
-rw-r--r--test/files/neg/constrs.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/constrs.scala b/test/files/neg/constrs.scala
index 969f593a2d..016df098f0 100644
--- a/test/files/neg/constrs.scala
+++ b/test/files/neg/constrs.scala
@@ -9,7 +9,7 @@ object test {
class Foo(x: Int) {
def this() = this("abc")
def this(x: String) = this(1)
- def this(x: boolean) = this(x)
+ def this(x: Boolean) = this(x)
}
class Bar[a](x: a) {