summaryrefslogtreecommitdiff
path: root/test/pending/run/records.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/records.scala')
-rw-r--r--test/pending/run/records.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pending/run/records.scala b/test/pending/run/records.scala
index 87b15265f2..0447b6f085 100644
--- a/test/pending/run/records.scala
+++ b/test/pending/run/records.scala
@@ -1,10 +1,10 @@
trait C {
- def f: int
+ def f: Int
}
object Test {
type T = C {
- def f: int
+ def f: Int
def g: String
}