blob: 2ca24d9c7942ea2beeac732f22e08e31fcd051b7 [file]
{ The way union unraveling works in parser-modes, the union(Foo,Bar)
below triggers the emission of two entries with the same modes in
the resulting module interface. }
module Module_26 =
def
pub int public;
int private;
pub mode Baz = union(Foo,Bar);
pub mode Foo = union (int,bool,real);
mode Bar = union (int,bool);
mode Je = struct (int lele);
skip
fed