summaryrefslogtreecommitdiff
path: root/test/files/run/infix.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/infix.scala')
-rw-r--r--test/files/run/infix.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/infix.scala b/test/files/run/infix.scala
index 9df07ac317..60a844acad 100644
--- a/test/files/run/infix.scala
+++ b/test/files/run/infix.scala
@@ -1,5 +1,5 @@
-case class op(x: op, y: int, z: int) {
- def op(y: int, z: int) = new op(this, y, z)
+case class op(x: op, y: Int, z: Int) {
+ def op(y: Int, z: Int) = new op(this, y, z)
}
object Test extends Application {