|
Scala example source code file (test4.scala)
The Scala test4.scala source code
package test;
trait C {}
trait D {}
trait E {}
object test {
def c: C = c;
def d: D = d;
def e: E = e;
}
import test._;
trait S extends ooo.I[D] {
def bar: E = foo(c,d);
}
class O[X]() {
trait I[Y] {
def foo(x: X, y: Y): E = e;
}
val i:I[E] = null;
val j:I[X] = null;
}
object ooo extends O[C]() {
def main = {
val s: S = null;
import s._;
foo(c,d);
ooo.i.foo(c,e);
ooo.j.foo(c,c);
bar
}
}
class Main() {
val s: S = null;
import s._;
foo(c,d);
ooo.i.foo(c,e);
ooo.j.foo(c,c);
bar;
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala test4.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.