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.check | 4 ++++ test/files/neg/bug1112.scala | 14 ++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 test/files/neg/bug1112.check create mode 100644 test/files/neg/bug1112.scala (limited to 'test/files') diff --git a/test/files/neg/bug1112.check b/test/files/neg/bug1112.check new file mode 100644 index 0000000000..3be45a87fe --- /dev/null +++ b/test/files/neg/bug1112.check @@ -0,0 +1,4 @@ +bug1112.scala:12: error: wrong number of arguments for method call: (int)(=> () => unit)unit + call(0,() => System.out.println("here we are")) + ^ +one error found 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