racket/collects/honu/examples/old/sub-bad-init.honu
Stevie Strickland 7dbb99d3c6 merged 292:296 from branches/sstrickl
svn: r297
2005-07-02 04:03:02 +00:00

12 lines
204 B
Plaintext

type t {}
class c() : t { init int x; export t; }
mixin mx() : t at t with int x, int y {
init int z;
super(x = 1, y = 2);
export t;
}
subclass c2 = mx(c); // should fail thanks to y = 2 above.