view nocompile/b/bug_tocsym_142_D.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 9c56e95b4ec8
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @desc@	tocsym.c:142: virtual Symbol* VarDeclaration::toSymbol(): Assertion `!needThis()' failed.
// @author@	Tiago Gasiba <tiago.gasiba@gmail.com>
// @date@	2005-10-24
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=5190

// __DSTRESS_ELINE__ 22

module dstress.nocompile.b.bug_tocsym_142_D;

struct S{
	int i;
}

struct C{
	S s;

	static int bug(){
		return s.i;
	}
}