diff --git a/tests/neg/i3702.scala b/tests/neg/i3702.scala index 1b5ef1fa3e7e..1809e2ae7e75 100644 --- a/tests/neg/i3702.scala +++ b/tests/neg/i3702.scala @@ -2,7 +2,7 @@ object test { class annot extends scala.annotation.Annotation def foo = { def bar(i: Int): Int = i - @annot class Silly {} + @annot class Silly {} // error: not found bar(5) } }