From 3d7e820e9bc7d67023949eeecedb1b6bdedf53f5 Mon Sep 17 00:00:00 2001 From: michelou Date: Tue, 20 May 2008 10:00:59 +0000 Subject: int -> Int, etc.. --- test/files/run/infix.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/files/run/infix.scala') 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 { -- cgit v1.2.3