22 lines
161 B
C#
Raw Normal View History

using System;
class Hello : IFoo
{
void IBar.Test ()
{
}
public static void Main ()
{
}
}
interface IBar
{
void Test ();
}
interface IFoo : IBar
{
}