Thread overview
mtype.c:3301 Assertion `sym->memtype' failed.
Feb 14, 2006
Ant
Feb 14, 2006
John Reimer
OT Re: mtype.c:3301 Assertion `sym->memtype' failed.
Feb 15, 2006
Ant
Feb 16, 2006
Thomas Kuehne
February 14, 2006
I don't know if it was reported before

###############
// em.d
alias E.hello hello;
enum E
{
	hello
}
void main(){}
###############

$ dmd em.d -I~/dmd/src/phobos
dmd: mtype.c:3301: virtual Expression* TypeEnum::getProperty(Loc, Identifier*): Assertion `sym->memtype' failed.
Aborted


Ant
February 14, 2006
Ant wrote:
> I don't know if it was reported before
> 
> ###############
> // em.d
> alias E.hello hello;
> enum E
> {
>     hello
> }
> void main(){}
> ###############
> 
> $ dmd em.d -I~/dmd/src/phobos
> dmd: mtype.c:3301: virtual Expression* TypeEnum::getProperty(Loc, Identifier*): Assertion `sym->memtype' failed.
> Aborted
> 
> 
> Ant


Hi Ant,

I just had to respond OT.  Welcome!  Where have you been. You've been missed! :)

-JJR
February 15, 2006
John Reimer wrote:
> I just had to respond OT.  Welcome!

thanks ;)
check the forum at dsource for the latest news on Dui.

Ant
February 16, 2006
Ant schrieb am 2006-02-14:
> I don't know if it was reported before
>
> ###############
> // em.d
> alias E.hello hello;
> enum E
> {
> 	hello
> }
> void main(){}
> ###############
>
> $ dmd em.d -I~/dmd/src/phobos
> dmd: mtype.c:3301: virtual Expression* TypeEnum::getProperty(Loc, Identifier*): Assertion
> `sym->memtype' failed.
> Aborted

Added to DStress as http://dstress.kuehne.cn/run/e/enum_44_A.d http://dstress.kuehne.cn/run/e/enum_44_B.d http://dstress.kuehne.cn/run/e/enum_44_C.d http://dstress.kuehne.cn/run/e/enum_44_D.d http://dstress.kuehne.cn/nocompile/e/enum_44_E.d http://dstress.kuehne.cn/nocompile/e/enum_44_F.d

Thomas