summaryrefslogtreecommitdiff
path: root/test/files/neg/t591.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t591.scala')
-rw-r--r--test/files/neg/t591.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/files/neg/t591.scala b/test/files/neg/t591.scala
index 0f0b02395c..14fb256a69 100644
--- a/test/files/neg/t591.scala
+++ b/test/files/neg/t591.scala
@@ -35,7 +35,8 @@ trait BaseFlow extends BaseList {
private var input : Input = _;
private var output : Output = _;
+ // the error message is a bit confusing, as it points here,
+ // but the symbol it reports is `input`'s actual setter (the one we synthesized)
def input_=(in : Input) = {}
-
}
}