Re: New type Stash for Block is not a mixin type

2020-09-28 Thread Fernando Santagata
problem. I have >> a module like this: >> > >> > unit class Class1; >> > etc. >> > >> > Then a second module: >> > >> > unit class Class2; >> > use Class1; >> > etc. >> > >> > In a program I need

Re: New type Stash for Block is not a mixin type

2020-09-26 Thread Fernando Santagata
t; etc. > > > > In a program I need both modules, so it begins with two lines: > > > > use Class1; > > use Class2; > > etc. > > > > At this point if I run the program I get this error: > > > > New type Stash for Block is not a mixin type &g

Re: New type Stash for Block is not a mixin type

2020-09-24 Thread Elizabeth Mattijsen
gt; Then a second module: > > unit class Class2; > use Class1; > etc. > > In a program I need both modules, so it begins with two lines: > > use Class1; > use Class2; > etc. > > At this point if I run the program I get this error: > > New type Stash for

New type Stash for Block is not a mixin type

2020-09-24 Thread Fernando Santagata
if I run the program I get this error: New type Stash for Block is not a mixin type pointing to the line of code that uses Class2. If I remove the "use Class1" line, that program works fine. But it bugs me, because I don't understand that behavior. Any hint? The whole thing worke