summaryrefslogtreecommitdiff
path: root/test/files/neg/gadts1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/gadts1.scala')
-rw-r--r--test/files/neg/gadts1.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/neg/gadts1.scala b/test/files/neg/gadts1.scala
index 08403e6eec..1fb6e57e2d 100644
--- a/test/files/neg/gadts1.scala
+++ b/test/files/neg/gadts1.scala
@@ -11,8 +11,8 @@ class IntTerm(n: Int) extends NumTerm(n) with Term[Int]
def f[a](t:Term[a], c:Cell[a]): Unit = {
- t match {
- case NumTerm(n) => c.x = Double(1.0)
+ t match {
+ case NumTerm(n) => c.x = Double(1.0)
}
t match {
// presently testing that this gets past the parser: eventually