aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/overloaded_extractor_and_regular_def.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/overloaded_extractor_and_regular_def.scala')
-rw-r--r--tests/untried/pos/overloaded_extractor_and_regular_def.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/untried/pos/overloaded_extractor_and_regular_def.scala b/tests/untried/pos/overloaded_extractor_and_regular_def.scala
index c34dee8fa..72b9f65d8 100644
--- a/tests/untried/pos/overloaded_extractor_and_regular_def.scala
+++ b/tests/untried/pos/overloaded_extractor_and_regular_def.scala
@@ -12,7 +12,7 @@ trait TreesBase {
}
trait TreesApi extends TreesBase {
- def Apply(x: String)
+ def Apply(x: String): Unit
}
class Universe extends TreesApi {