summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1075.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug1075.scala')
-rw-r--r--test/files/pos/bug1075.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/bug1075.scala b/test/files/pos/bug1075.scala
index 936ef72272..0f518b24db 100644
--- a/test/files/pos/bug1075.scala
+++ b/test/files/pos/bug1075.scala
@@ -5,7 +5,7 @@ class Directory(var dir_ : String)
}
dir_ = dir_.replaceAll("/{2,}", "/")
- def this(serialized : Array[byte]) = {
+ def this(serialized : Array[Byte]) = {
this(new String(serialized, "UTF-8"))
}