summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1237.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug1237.scala')
-rw-r--r--test/files/pos/bug1237.scala7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/files/pos/bug1237.scala b/test/files/pos/bug1237.scala
index 01f656f580..7777372138 100644
--- a/test/files/pos/bug1237.scala
+++ b/test/files/pos/bug1237.scala
@@ -3,11 +3,10 @@ class HelloWorld {
object TypeBool;
- trait Fct
- {
- def g(x : int) = TypeBool // breaks.
+ trait Fct {
+ def g(x : Int) = TypeBool // breaks.
- // def g(x : int) = 3 // fine.
+ // def g(x : Int) = 3 // fine.
}
()