summaryrefslogtreecommitdiff
path: root/test/files/neg/abstract-vars.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-07-03 00:56:00 +0000
committerPaul Phillips <paulp@improving.org>2010-07-03 00:56:00 +0000
commit39e4641ec932965eaa9ef30b3954aef3f0579fa5 (patch)
tree6dce13c4da159d528826807c5cee1ff7b844fd3d /test/files/neg/abstract-vars.check
parent322e856f132c4ee8ac651848a041b693f830371b (diff)
downloadscala-39e4641ec932965eaa9ef30b3954aef3f0579fa5.tar.gz
scala-39e4641ec932965eaa9ef30b3954aef3f0579fa5.tar.bz2
scala-39e4641ec932965eaa9ef30b3954aef3f0579fa5.zip
When compilation fails because of an unimplemen...
When compilation fails because of an unimplemented abstract var, give a more precise error message about what happened. Also avoid issuing the same error twice because neither getter nor setter is implemented. Closes #36, review by rytz.
Diffstat (limited to 'test/files/neg/abstract-vars.check')
-rw-r--r--test/files/neg/abstract-vars.check21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/files/neg/abstract-vars.check b/test/files/neg/abstract-vars.check
new file mode 100644
index 0000000000..8aa47745f6
--- /dev/null
+++ b/test/files/neg/abstract-vars.check
@@ -0,0 +1,21 @@
+abstract-vars.scala:5: error: class Fail1 needs to be abstract, since variable x is not defined
+(Note that variables need to be initialized to be defined)
+class Fail1 extends A {
+ ^
+abstract-vars.scala:9: error: class Fail2 needs to be abstract, since variable x in class A of type Int is not defined
+(Note that variables need to be initialized to be defined)
+class Fail2 extends A { }
+ ^
+abstract-vars.scala:11: error: class Fail3 needs to be abstract, since variable x in class A of type Int is not defined
+(Note that an abstract var requires a setter in addition to the getter)
+class Fail3 extends A {
+ ^
+abstract-vars.scala:14: error: class Fail4 needs to be abstract, since variable x in class A of type Int is not defined
+(Note that an abstract var requires a setter in addition to the getter)
+class Fail4 extends A {
+ ^
+abstract-vars.scala:18: error: class Fail5 needs to be abstract, since variable x in class A of type Int is not defined
+(Note that an abstract var requires a getter in addition to the setter)
+class Fail5 extends A {
+ ^
+5 errors found