Merge pull request #5010 from Unity-Technologies/boehm-gc-alloc-fixed-sre
[mono.git] / mcs / errors / cs0169-2.cs
1 // CS0169: The private field `Foo.Bar.a' is never used
2 // Line: 9
3 // Compiler options: -warnaserror -warn:4
4
5 class Foo
6 {
7         class Bar
8         {
9                 int a;
10         }
11 }