From b2bec5a1355bd271bed86b071823a64eeafc0618 Mon Sep 17 00:00:00 2001 From: Simon Ochsenreither Date: Wed, 12 Dec 2012 16:56:22 +0100 Subject: SI-6809 Forbids deprecated case class definitions without parameter list This has been deprecated since at least 2.7.7, so it should be good to go. --- test/files/pos/t0301.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/files/pos/t0301.scala') diff --git a/test/files/pos/t0301.scala b/test/files/pos/t0301.scala index cb68f38062..24b4776010 100644 --- a/test/files/pos/t0301.scala +++ b/test/files/pos/t0301.scala @@ -1,7 +1,7 @@ package fos abstract class Expr -case class Var extends Expr +case class Var() extends Expr object Analyzer { def substitution(expr: Expr, cls: (Var,Var)): Expr = -- cgit v1.2.3