Skip to content

Commit

Permalink
rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iusildra committed Jul 13, 2023
1 parent 8b989c2 commit 6fb7848
Showing 1 changed file with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,17 @@ abstract class RuntimeEvaluatorTests(val scalaVersion: ScalaVersion) extends Deb
| y
| }
| }
|}
|
|object Main {
| def main(args: Array[String]): Unit = {
| val b = new B("x", "y")
| val bInner = new b.BInner
| val aInner = new b.AInner
| bInner.yy
| println("ok")
| }
|}
|""".stripMargin
implicit val debuggee: TestingDebuggee = TestingDebuggee.mainClass(source, "example.Main", scalaVersion)
check(
Expand All @@ -876,7 +887,7 @@ abstract class RuntimeEvaluatorTests(val scalaVersion: ScalaVersion) extends Deb
)
}

test("Should support names with special characters".only) {
test("Should support names with special characters") {
val source =
"""|package example
|
Expand All @@ -897,10 +908,6 @@ abstract class RuntimeEvaluatorTests(val scalaVersion: ScalaVersion) extends Deb
|
|object Main {
| def main(args: Array[String]): Unit = {
| val b = new B("x", "y")
| val bInner = new b.BInner
| val aInner = new b.AInner
| bInner.yy
| val a = new `A+B`
| a.&&.x
| println("ok")
Expand Down

0 comments on commit 6fb7848

Please sign in to comment.