view nocompile/super_06.d @ 980:aaf6f2e639e9

repository review
author thomask
date Sun, 30 Apr 2006 09:13:22 +0000
parents 9a121126b077
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Base$

// __DSTRESS_ELINE__ 15

module dstress.nocompile.super_06;

class Parent{
	this(int i){
	}
}

class Child : Parent{
	this(char[] c){
	}
}