[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0115-5.cs
1 // CS0115: `B.Foo(ref int)' is marked as an override but no suitable method found to override
2 // Line: 13
3
4 class A
5 {
6         public virtual void Foo (out int i)
7         {
8         }
9 }
10
11 class B : A
12 {
13         public override void Foo (ref int i)
14         {
15         }
16 }