summaryrefslogtreecommitdiff
path: root/test/files/run/infix.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-05-20 10:00:59 +0000
committermichelou <michelou@epfl.ch>2008-05-20 10:00:59 +0000
commit3d7e820e9bc7d67023949eeecedb1b6bdedf53f5 (patch)
tree2f04564cddd36f1d3c18927c9cc6348e4ba4ce5f /test/files/run/infix.scala
parent7e9f81fd531972aa7e7c6a938e7cc23f7f3ab7dc (diff)
downloadscala-3d7e820e9bc7d67023949eeecedb1b6bdedf53f5.tar.gz
scala-3d7e820e9bc7d67023949eeecedb1b6bdedf53f5.tar.bz2
scala-3d7e820e9bc7d67023949eeecedb1b6bdedf53f5.zip
int -> Int, etc..
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 {