summaryrefslogtreecommitdiff
path: root/test/files/pos/t8736.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t8736.scala')
-rw-r--r--test/files/pos/t8736.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/t8736.scala b/test/files/pos/t8736.scala
new file mode 100644
index 0000000000..46c0cdfd00
--- /dev/null
+++ b/test/files/pos/t8736.scala
@@ -0,0 +1,7 @@
+// scalac: -feature -language:implicitConversions -language:higherKinds -language:-implicitConversions -Xfatal-warnings
+// showing that multiple settings are respected, and explicit enablement has precedence
+class X {
+ def hk[M[_]] = ???
+
+ implicit def imp(x: X): Int = x.hashCode
+}