From 0e3e701870e705a453df5f4e178af377eeb54aec Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Wed, 27 Oct 2010 01:58:46 +0000 Subject: Some uninteresting code related to error messag... Some uninteresting code related to error messages, which I'm checking in mostly because I booted the r23379 commit in a git-svn meltdown and posterity demands the message, which was: You can now use the self-type of an anonymous class as a singleton type in a pattern match ON THE MOON. Actual test case excerpt: val x4 = new { self => def f(x: Any) = x match { case _: x1.type => 1 case _: x2.type => 2 case _: x3.type => 3 case _: self.type => 4 case x: Dingus.type => x.IamDingus } } Closes #576, no review. --- test/files/neg/annot-nonconst.check | 4 ++-- test/files/neg/t0117.check | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'test/files') diff --git a/test/files/neg/annot-nonconst.check b/test/files/neg/annot-nonconst.check index 23429bb11a..385f066baa 100644 --- a/test/files/neg/annot-nonconst.check +++ b/test/files/neg/annot-nonconst.check @@ -1,9 +1,9 @@ -annot-nonconst.scala:1: warning: implementation restriction: subclassing Classfile does not +annot-nonconst.scala:1: warning: Implementation restriction: subclassing Classfile does not make your annotation visible at runtime. If that is what you want, you must write the annotation class in Java. class Length(value: Int) extends ClassfileAnnotation ^ -annot-nonconst.scala:2: warning: implementation restriction: subclassing Classfile does not +annot-nonconst.scala:2: warning: Implementation restriction: subclassing Classfile does not make your annotation visible at runtime. If that is what you want, you must write the annotation class in Java. class Ann2(value: String) extends ClassfileAnnotation diff --git a/test/files/neg/t0117.check b/test/files/neg/t0117.check index fd6af54e77..db28b60f3e 100644 --- a/test/files/neg/t0117.check +++ b/test/files/neg/t0117.check @@ -1,4 +1,4 @@ -t0117.scala:2: error: implementation restriction: traits may not select fields or methods from to super[C] where C is a class +t0117.scala:2: error: Implementation restriction: traits may not select fields or methods from to super[C] where C is a class trait B extends A { println(super[A].a) } ^ one error found -- cgit v1.2.3