February 19, 2005
# module dstress.nocompile.inline_07;
#
# struct MyStruct{
#	int bug() {
# 		return 3;
#	}
# }
#
# int main(){
#	assert(MyStruct.bug()==3);
#	return 0;
# }

dmd -inline inline_07.d
| Assertion failure: 'ids->vthis' on line 394 in file 'inline.c'

test cases:
http://dstress.kuehne.cn/nocompile/inline_07.d
http://dstress.kuehne.cn/nocompile/inline_08.d
http://dstress.kuehne.cn/run/inline_09.d

Thomas