summaryrefslogtreecommitdiff
path: root/test/files/pos/bug1237.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-05-20 10:32:59 +0000
committermichelou <michelou@epfl.ch>2008-05-20 10:32:59 +0000
commit4686535142b380ccfad910250303e15bd41fb79d (patch)
tree210b6b24b42e837472ee03dfb98c045e2b882ec7 /test/files/pos/bug1237.scala
parent44fd5e7272f7fbcc901d1ecaf563351217a50e7d (diff)
downloadscala-4686535142b380ccfad910250303e15bd41fb79d.tar.gz
scala-4686535142b380ccfad910250303e15bd41fb79d.tar.bz2
scala-4686535142b380ccfad910250303e15bd41fb79d.zip
int -> Int, etc..
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.
}
()