From ada6cccb3587d6d51703e385faba85d8694c9ccd Mon Sep 17 00:00:00 2001 From: Adriaan Moors Date: Mon, 12 Jul 2010 17:03:03 +0000 Subject: Closes #3653. no review Author: Mark Harrah Date: Thu Jul 8 10:30:57 2010 -0400 Source: http://github.com/harrah/scala-starrless/commit/0c7759c95b47cebc6d9fa77cefd34ef638e2706e Reviewer: moors --- test/files/neg/t3653.check | 7 +++++++ test/files/neg/t3653.scala | 4 ++++ 2 files changed, 11 insertions(+) create mode 100644 test/files/neg/t3653.check create mode 100644 test/files/neg/t3653.scala (limited to 'test') diff --git a/test/files/neg/t3653.check b/test/files/neg/t3653.check new file mode 100644 index 0000000000..ac6e2ca9dc --- /dev/null +++ b/test/files/neg/t3653.check @@ -0,0 +1,7 @@ +t3653.scala:3: error: double definition: +method x:(implicit x: Int)Int and +method x:(i: Int)Int at line 2 +have same type after erasure: (x: Int)Int + def x(implicit x: Int) = 5 + ^ +one error found diff --git a/test/files/neg/t3653.scala b/test/files/neg/t3653.scala new file mode 100644 index 0000000000..96cf96008a --- /dev/null +++ b/test/files/neg/t3653.scala @@ -0,0 +1,4 @@ +class B { + def x(i: Int) = 3 + def x(implicit x: Int) = 5 +} \ No newline at end of file -- cgit v1.2.3