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

8 lines
185 B
Plaintext

type t {}
final class c() : t { init int x; export t; }
mixin mx() : t at t with int x { init int z; super(x = 1); export t; }
subclass c2 = mx(c); // should fail because c is final