From c4181de5eb0fd4e2f03a67d3e1c7a13dd90c2860 Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Tue, 15 May 2007 22:58:06 +0000 Subject: fixed bug1112 --- test/files/neg/bug1112.scala | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/files/neg/bug1112.scala (limited to 'test/files/neg/bug1112.scala') diff --git a/test/files/neg/bug1112.scala b/test/files/neg/bug1112.scala new file mode 100644 index 0000000000..3e108e39af --- /dev/null +++ b/test/files/neg/bug1112.scala @@ -0,0 +1,14 @@ +// checks that error doesn't crash the compiler +// (due to isFunctionType normalizing Type1 to a function type, +// but then the code that used that test not using the normalized type for further operations) +class Test { + type Type1 = () => unit + + def call(p: int)(f: => Type1) = { + f() + } + + def run = { + call(0,() => System.out.println("here we are")) + } +} \ No newline at end of file -- cgit v1.2.3