view run/s/struct_23_G.d @ 1604:cc724d521a34

Add note about possible issues with test case depending on switch scopes.
author Christian Kamm <kamm incasoftware de>
date Sat, 28 Mar 2009 19:17:58 +0100
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	Chris Miller <chris@dprogramming.com>
// @date@	2006-02-07
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6182

module dstress.run.s.struct_23_G;

struct Foo {
	Foo* f;
}

int main(){
	Foo f;
	assert(f.f is null);
	
	f.f = &f;
	assert(*f.f == f);
	
	return 0;
}