view nocompile/alias_05.d @ 756:9a121126b077

major "Torture" review
author thomask
date Sat, 03 Dec 2005 22:19:07 +0000
parents 4c83f19a8301
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 14

module dstress.nocompile.alias_05;

alias int myint;

void foo(int x) {
}

void foo(myint m) { // error, multiply defined function foo
}