summaryrefslogtreecommitdiff
path: root/test/files/run/bug4556.check
blob: 69d0b4fda109df42a37e0d9776a1e6d66bc42ff5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Type in expressions to have them evaluated.
Type :help for more information.

scala> 

scala> :type [List(1, 2, 3)]
<console>:2: error: illegal start of simple expression
       [List(1, 2, 3)]
       ^


scala> :type List(1, 2, 3)
List[Int]

scala> 

scala>