summaryrefslogtreecommitdiff
path: root/test/files/neg/t3977.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-03-13 16:09:32 -0700
committerPaul Phillips <paulp@improving.org>2013-03-13 16:09:32 -0700
commit3fe7b8c0a8c86b38d010f37887092ce665f08df2 (patch)
tree38c90a7ffc3ded7dd13900a25bedc9b363855c30 /test/files/neg/t3977.scala
parenta4c338888f4364dfd44989acd12cb72daf639081 (diff)
downloadscala-3fe7b8c0a8c86b38d010f37887092ce665f08df2.tar.gz
scala-3fe7b8c0a8c86b38d010f37887092ce665f08df2.tar.bz2
scala-3fe7b8c0a8c86b38d010f37887092ce665f08df2.zip
SI-7247, deprecated NotNull.
Removed NotNull from tests and the parentage of AnyVal. Removed the tests which were actually testing anything to do with NotNull; massaged the others to forget NotNull and/or not to name local things NotNull.
Diffstat (limited to 'test/files/neg/t3977.scala')
-rw-r--r--test/files/neg/t3977.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/neg/t3977.scala b/test/files/neg/t3977.scala
index f55a832c52..11a8cdba4b 100644
--- a/test/files/neg/t3977.scala
+++ b/test/files/neg/t3977.scala
@@ -7,7 +7,7 @@ trait False extends Bool {
}
class Field[E, N <: Bool](implicit val w: N#If[E]) {
- type NotNull = Field[E, False]
+ type NoNull = Field[E, False]
- new NotNull
-} \ No newline at end of file
+ new NoNull
+}