a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
223 B
C#
Executable File
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)
|
|
{
|
|
}
|
|
}
|