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.
1 parent 2e64369 commit 80cab81Copy full SHA for 80cab81
sbt-dotty/sbt-test/source-dependencies/inline/changes/B2.scala
@@ -1,4 +1,4 @@
1
object B {
2
- transparent def getInline: Double =
3
- A.get
+ transparent def getInline: String =
+ A.get.toString
4
}
sbt-dotty/sbt-test/source-dependencies/inline/test
@@ -2,7 +2,7 @@ $ copy-file changes/B1.scala B.scala
> compile
$ copy-file changes/B2.scala B.scala
5
-# Compilation of C.scala should fail because B.getInline now has type Double instead of Int
+# Compilation of C.scala should fail because B.getInline now has type String instead of Int
6
-> compile
7
8
$ copy-file changes/B1.scala B.scala
0 commit comments