-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathi2063
24 lines (24 loc) · 1.46 KB
/
i2063
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
scala> class Foo extends Bar // with one tab
-- [E006] Not Found Error: -----------------------------------------------------
1 | class Foo extends Bar // with one tab
| ^^^
| Not found: type Bar
|
| longer explanation available when compiling with `-explain`
1 error found
scala> class Foo extends Bar // with spaces
-- [E006] Not Found Error: -----------------------------------------------------
1 | class Foo extends Bar // with spaces
| ^^^
| Not found: type Bar
|
| longer explanation available when compiling with `-explain`
1 error found
scala> class Foo extends Bar // with tabs
-- [E006] Not Found Error: -----------------------------------------------------
1 | class Foo extends Bar // with tabs
| ^^^
| Not found: type Bar
|
| longer explanation available when compiling with `-explain`
1 error found