From d6b1e6e4ff1cb477e9b26ba7e1a02d1ea98fa132 Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Mon, 10 Feb 2014 08:59:22 +0100 Subject: SI-6260 Adddress pull request review - fix typo - remove BRIDGE flag from the method that we promote from a bridge to a bona-fide method - note possibility for delambdafy to avoid the bridge method creation in *all* cases. - note inconsistency with anonymous class naming between `-Ydelamdafy:{inline,method}` --- test/files/neg/t6260-named.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/files/neg/t6260-named.scala b/test/files/neg/t6260-named.scala index 7ce13476eb..7cd9ce8473 100644 --- a/test/files/neg/t6260-named.scala +++ b/test/files/neg/t6260-named.scala @@ -7,7 +7,7 @@ object Test { (x: C[Any]) => {println(s"f($x)"); x} // okay new T[C[Any]] { def apply(a: C[Any]) = a } // okay - // we can't rename the specific apply methid to avoid the clash + // we can't rename the specific apply method to avoid the clash object O extends Function1[C[Any], C[Any]] { def apply(a: C[Any]) = a } -- cgit v1.2.3