From 06aa1c9eff49d5190e82a72a876d7b3bd706d6d4 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sat, 2 Oct 2010 22:43:10 +0000 Subject: Sorting through the tests in pending from oldes... Sorting through the tests in pending from oldest to newest because I don't believe in having useless appendages. The verdict on the oldest fifteen tests is: 15/15 are fixed. Many were already in files under a different name. I moved a few and deleted the rest. Fun fact of the day: apparently there was a time when to call into java varargs with no arguments you might have to write something like: getClass().getMethod("getCount", Array[java.lang.Class[T] forSome { type T }]()) On this basis I retract any complaints I've ever had about anything. There is one question mark outlined in pos/testCoercionThis.scala, a file formerly called pos/moors.scala and therefore... review by moors. --- test/files/pos/testCoercionThis.scala | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 test/files/pos/testCoercionThis.scala (limited to 'test/files/pos/testCoercionThis.scala') diff --git a/test/files/pos/testCoercionThis.scala b/test/files/pos/testCoercionThis.scala new file mode 100644 index 0000000000..5631b33306 --- /dev/null +++ b/test/files/pos/testCoercionThis.scala @@ -0,0 +1,19 @@ +object Test { + implicit def foo2bar(foo: Foo): Bar = foo.bar + + class Foo(val bar: Bar) { + def testCoercion = { + val a: this.type = this + a.baz /* here, foo2bar is inferred by the compiler, as expected */ + } + // def testCoercionThis0 = baz + // --> error: not found: value baz + // PP: is that something we really want to work? Seems like sketchville. + // + // These work, so I moved this out of pending. + def testCoercionThis1 = this.baz + def testCoercionThis2 = (this: Foo).baz + } + + class Bar { def baz = System.out.println("baz") } +} -- cgit v1.2.3