Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

38 lines
370 B
C#

class A
{
public virtual bool Foo (string s)
{
return true;
}
public virtual string Foo<T> (string s)
{
return "v";
}
}
class B : A
{
public bool Goo (string s)
{
return Foo (s);
}
public override bool Foo (string s)
{
return false;
}
public override string Foo<T> (string s)
{
return "a";
}
}
class C
{
public static void Main ()
{
}
}