summaryrefslogtreecommitdiff
path: root/test/files/pos/t1164.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1164.scala')
-rw-r--r--test/files/pos/t1164.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t1164.scala b/test/files/pos/t1164.scala
index 3acda88ba9..b238bf54d9 100644
--- a/test/files/pos/t1164.scala
+++ b/test/files/pos/t1164.scala
@@ -15,7 +15,7 @@ object test {
// Try the same thing as above but use function as arguemnt to Bar
// constructor
- type FunIntToA [a] = (int) => a
+ type FunIntToA [a] = (Int) => a
class Bar[a] (var f: FunIntToA[a])
object Bar {