|
Scala example source code file (aliases.scala)
The Scala aliases.scala source code
abstract class C() {
type t <: C;
val x: t;
val y: x.type;
val z: x.type;
val u: z.type;
val xt: x.t;
val yt: y.t;
val zt: z.t;
val ut: z.t;
def fx(a: x.t): Unit;
def fy(a: y.t): Unit;
def fz(a: z.t): Unit;
def fu(a: u.t): Unit;
fx(xt); fx(yt); fx(zt); fx(ut);
fy(xt); fy(yt); fy(zt); fy(ut);
fz(xt); fz(yt); fz(zt); fz(ut);
fu(xt); fu(yt); fu(zt); fu(ut);
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala aliases.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.