From a4baf28d203959457d82762e27ffbb7104dc0a07 Mon Sep 17 00:00:00 2001 From: michelou Date: Tue, 10 Jun 2008 08:46:06 +0000 Subject: int -> Int, etc.. --- test/files/pos/bug767.scala | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'test/files/pos/bug767.scala') diff --git a/test/files/pos/bug767.scala b/test/files/pos/bug767.scala index 05dd97f556..0c4067f022 100644 --- a/test/files/pos/bug767.scala +++ b/test/files/pos/bug767.scala @@ -1,18 +1,18 @@ abstract class AbsCell { - type T = Node - val init: T - private var value: T = init - def get: T = value - def set (x: T): unit = { value = x } + type T = Node + val init: T + private var value: T = init + def get: T = value + def set (x: T) { value = x } - class Node { - val foo = 1 - } + class Node { + val foo = 1 + } } object inner { - def main(args: Array[String]): Unit = { - val cell = new AbsCell { val init = new Node() } - cell.set(new cell.type#T()) // nullpointer exception - } + def main(args: Array[String]) { + val cell = new AbsCell { val init = new Node() } + cell.set(new cell.type#T()) // nullpointer exception + } } -- cgit v1.2.3