Skip to content

Commit

Permalink
Fix error line
Browse files Browse the repository at this point in the history
  • Loading branch information
liufengyun committed May 9, 2024
1 parent 9655976 commit 67c68b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/init-global/warn/ScalaCheck.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ trait CmdLineParser:
println("outer.a = " + outer.a)

object FirstParser extends CmdLineParser:
object OptMinSuccess extends IntOpt:
object OptMinSuccess extends IntOpt: // warn
val default = 100
val names = Set("bla")
val help = "bla"

val opts = List(OptMinSuccess) // warn
val opts = List(OptMinSuccess)
val a = "FirstParser"

0 comments on commit 67c68b8

Please sign in to comment.