summaryrefslogtreecommitdiff
path: root/test/files/neg/t3977.scala
diff options
context:
space:
mode:
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
+}