summaryrefslogtreecommitdiff
path: root/test/files/pos/t1756.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1756.scala')
-rwxr-xr-xtest/files/pos/t1756.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t1756.scala b/test/files/pos/t1756.scala
index d5d3ddc624..1d067c3b04 100755
--- a/test/files/pos/t1756.scala
+++ b/test/files/pos/t1756.scala
@@ -34,7 +34,7 @@ class Poly[C <: Ring[C]](val c: C) extends Ring[Poly[C]] {
def *(that: Poly[C]) = new Poly(this.c*that.c)
}
-object Test extends Application {
+object Test extends App {
implicit def coef2poly[C <: Ring[C]](c: C): Poly[C] = new Poly(c)