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

17 lines
223 B
C#
Executable File

// CS0115: `B.Foo(ref int)' is marked as an override but no suitable method found to override
// Line: 13
class A
{
public virtual void Foo (out int i)
{
}
}
class B : A
{
public override void Foo (ref int i)
{
}
}