view run/s/struct_23_G.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 4c00dcf48a0c
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;
}