view run/a/alias_24_B.d @ 1489:b8c0195059d9

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

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

// @author@	Burton Radons <burton-radons@smocky.com>
// @date@	2005-05-22
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4119

module dstress.run.a.alias_24_B;

interface S{
}

alias S [] SList;

interface I{
	void test(SList);
}

class C : I{
	void test(SList o){
	}
}

int main(){
	C c = new C;
	return 0;
}