summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorChristopher Vogt <christopher.vogt@epfl.ch>2013-07-14 06:47:49 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-07-16 12:39:00 +1000
commitc4bf1d5fb5a4d5e64e64b6af985fc795faa15bce (patch)
treee3ac40d3334ce79d8f596376becfe732ae733356 /test/files
parent2247593472031fd9712b652bab0b978a788e46ef (diff)
downloadscala-c4bf1d5fb5a4d5e64e64b6af985fc795faa15bce.tar.gz
scala-c4bf1d5fb5a4d5e64e64b6af985fc795faa15bce.tar.bz2
scala-c4bf1d5fb5a4d5e64e64b6af985fc795faa15bce.zip
SI-7636 Fix a NPE in typing class constructors
If we encountered an erroneous super call due to a failure in parent type argument inference, we must avoid inspecting the untyped children of erroneous trees.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/neg/t7636-neg.check10
-rw-r--r--test/files/neg/t7636.scala7
2 files changed, 17 insertions, 0 deletions
diff --git a/test/files/neg/t7636-neg.check b/test/files/neg/t7636-neg.check
new file mode 100644
index 0000000000..f70d50bee3
--- /dev/null
+++ b/test/files/neg/t7636-neg.check
@@ -0,0 +1,10 @@
+t7636.scala:3: error: illegal inheritance;
+ self-type Main.C does not conform to Main.ResultTable[_$3]'s selftype Main.ResultTable[_$3]
+ class C extends ResultTable(Left(5):Either[_,_])(5)
+ ^
+t7636.scala:3: error: type mismatch;
+ found : Either[_$2,_$3(in constructor C)] where type _$3(in constructor C), type _$2
+ required: Either[_, _$3(in object Main)] where type _$3(in object Main)
+ class C extends ResultTable(Left(5):Either[_,_])(5)
+ ^
+two errors found
diff --git a/test/files/neg/t7636.scala b/test/files/neg/t7636.scala
new file mode 100644
index 0000000000..a7b1b90151
--- /dev/null
+++ b/test/files/neg/t7636.scala
@@ -0,0 +1,7 @@
+object Main extends App{
+ class ResultTable[E]( query : Either[_,E] )( columns : Int )
+ class C extends ResultTable(Left(5):Either[_,_])(5)
+}
+// Inference of the existential type for the parent type argument
+// E still fails. That looks tricky to fix, see the comments in SI-7636.
+// But we at least prevent a cascading NPE. \ No newline at end of file