From f026bbb2ee1d1f9bed8c3a401833bb535b856f6b Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Wed, 23 May 2012 07:58:54 -0700 Subject: Widen types in names/defaults transformations. We were getting away with this somehow, but the types are wrong after typer and that sort of thing is noticed by more people now. I took the opportunity to add our first -Ycheck:all test, which is at least as much about helping -Ycheck:all remain in good working order as it is about this test. --- test/files/pos/z1730.flags | 1 + test/files/pos/z1730.scala | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 test/files/pos/z1730.flags create mode 100644 test/files/pos/z1730.scala (limited to 'test') diff --git a/test/files/pos/z1730.flags b/test/files/pos/z1730.flags new file mode 100644 index 0000000000..5319681590 --- /dev/null +++ b/test/files/pos/z1730.flags @@ -0,0 +1 @@ +-Ycheck:all \ No newline at end of file diff --git a/test/files/pos/z1730.scala b/test/files/pos/z1730.scala new file mode 100644 index 0000000000..0c5875a818 --- /dev/null +++ b/test/files/pos/z1730.scala @@ -0,0 +1,13 @@ +// /scala/trac/z1730/a.scala +// Wed May 23 07:41:25 PDT 2012 + +class X[R] { + def xx(value: => R, addTweak: Boolean = true) = 0 +} + +class Boo { + implicit def toX[R](v: R) : X[R] = null + def goo2 { + 3.xx(34) + } +} -- cgit v1.2.3