File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ class O[X]() {
7
7
val j : I [X ] = null ;
8
8
}
9
9
10
- object o extends O [C ]() {
10
+ object p extends O [C ]() {
11
11
def c : C = c;
12
12
def main = {
13
- o .j.foo(c);
13
+ p .j.foo(c);
14
14
}
15
15
}
16
16
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ object test {
10
10
11
11
import test ._ ;
12
12
13
- trait S extends o .I {
13
+ trait S extends p .I {
14
14
type Y = D ;
15
15
def bar : E = foo(c,d);
16
16
}
@@ -25,15 +25,15 @@ abstract class O() {
25
25
val j : I { type Y = X } = null ;
26
26
}
27
27
28
- object o extends O () {
28
+ object p extends O () {
29
29
type X = C ;
30
30
31
31
def main = {
32
32
val s : S = null ;
33
33
import s ._ ;
34
34
foo(c,d);
35
- o .i.foo(c,e);
36
- o .j.foo(c,c);
35
+ p .i.foo(c,e);
36
+ p .j.foo(c,c);
37
37
bar
38
38
}
39
39
}
@@ -42,8 +42,8 @@ class Main() {
42
42
val s : S = null ;
43
43
import s ._ ;
44
44
foo(c,d);
45
- o .i.foo(c,e);
46
- o .j.foo(c,c);
45
+ p .i.foo(c,e);
46
+ p .j.foo(c,c);
47
47
bar;
48
48
}
49
49
You can’t perform that action at this time.
0 commit comments