aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/primitive-sigs-1/A.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/primitive-sigs-1/A.scala')
-rw-r--r--tests/untried/neg/primitive-sigs-1/A.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/untried/neg/primitive-sigs-1/A.scala b/tests/untried/neg/primitive-sigs-1/A.scala
new file mode 100644
index 000000000..007a64c8f
--- /dev/null
+++ b/tests/untried/neg/primitive-sigs-1/A.scala
@@ -0,0 +1,9 @@
+// scala: the signature in the abstract class will use the
+// upper bound as return type, which for us will be Integer
+// since primitives can't appear in bounds.
+abstract class AC[T <: Int] {
+ def f(): T
+}
+class Bippy extends AC[Int] {
+ def f(): Int = 5
+}