[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0108-19.cs
1 // CS0108: `A.B.AnInt' hides inherited member `A.AnInt'. Use the new keyword if hiding was intended
2 // Line: 11
3 // Compiler options: -warnaserror
4
5 public abstract class A
6 {
7         static readonly int AnInt = 2;
8
9         public class B : A
10         {
11                 static readonly int AnInt = 3;
12         }
13 }