13 lines
637 B
Plaintext
Vendored
13 lines
637 B
Plaintext
Vendored
4 override fun foo() = <bold>3</bold> (in C.foo())
|
|
4 override fun <bold>foo() = 3</bold> (in C)
|
|
2 public int <bold>foo();</bold>
|
|
8 val x = a.<bold>foo()</bold> (in test(A, B,…))
|
|
8 val <bold>x = a.foo()</bold> (in test(A, B,…))
|
|
9 val y = b.<bold>foo()</bold> (in test(A, B,…))
|
|
9 val <bold>y = b.foo()</bold> (in test(A, B,…))
|
|
10 val z = c.<bold>foo()</bold> (in test(A, B,…))
|
|
10 val <bold>z = c.foo()</bold> (in test(A, B,…))
|
|
11 val u = d.<bold>foo()</bold> (in test(A, B,…))
|
|
11 val <bold>u = d.foo()</bold> (in test(A, B,…))
|
|
10 DUPLICATE: val z = c.<bold>foo()</bold> (in test(A, B,…))
|