view nocompile/i/interface_26_A.d @ 1210:94d6b178889f

[Issue 467] double inheritance from the same interface Roel <roel.mathys@gmail.com> 2006-10-28 news:ehvca4$4rr$1@digitaldaemon.com
author thomask
date Wed, 08 Nov 2006 15:23:52 +0000
parents
children 1ee9a0dd42d9
line wrap: on
line source

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

// @author@	Roel <roel.mathys@gmail.com>
// @date@	2006-10-28
// @uri@	news:ehvca4$4rr$1@digitaldaemon.com
// @desc@	[Issue 467] double inheritance from the same interface

module dstress.nocompile.i.interface_26_A;

interface I {
        void foo();
}

class C : I, I {
        void foo() {
	}
}