[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[mono.git] / mcs / errors / cs0507-5.cs
1 // CS0507: `Bar.X()': cannot change access modifiers when overriding `protected internal' inherited member `Foo.X()'
2 // Line: 13
3
4 class Foo
5 {
6         protected internal virtual void X ()
7         {
8         }
9 }
10
11 class Bar : Foo
12 {
13         protected override void X ()
14         {
15         }
16 }