summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/t3977.check4
-rw-r--r--test/files/neg/t3977.scala13
2 files changed, 17 insertions, 0 deletions
diff --git a/test/files/neg/t3977.check b/test/files/neg/t3977.check
new file mode 100644
index 0000000000..9da118ee91
--- /dev/null
+++ b/test/files/neg/t3977.check
@@ -0,0 +1,4 @@
+t3977.scala:12: error: could not find implicit value for parameter w: False#If[E]
+ new NotNull
+ ^
+one error found
diff --git a/test/files/neg/t3977.scala b/test/files/neg/t3977.scala
new file mode 100644
index 0000000000..f55a832c52
--- /dev/null
+++ b/test/files/neg/t3977.scala
@@ -0,0 +1,13 @@
+trait Bool {
+ type If[T]
+}
+
+trait False extends Bool {
+ type If[F] = F
+}
+
+class Field[E, N <: Bool](implicit val w: N#If[E]) {
+ type NotNull = Field[E, False]
+
+ new NotNull
+} \ No newline at end of file