We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 10145ff + 000e4c1 commit d355113Copy full SHA for d355113
tests/run/i10047.check
@@ -0,0 +1 @@
1
+slash
tests/run/i10047.scala
@@ -0,0 +1,15 @@
+object wrapper {
2
+ val / = "slash"
3
+}
4
+
5
+object foo {
6
+ implicit val postfixOps: scala.languageFeature.postfixOps = scala.language.postfixOps
7
+ val / = wrapper./
8
9
10
+object Test {
11
+ def main(args: Array[String]): Unit = {
12
+ val wd = foo./
13
+ println(wd)
14
+ }
15
0 commit comments