[amd64] Save missing register
[mono.git] / mcs / errors / cs0122-37.cs
1 // CS0122: `Test.Method' is inaccessible due to its protection level
2 // Line: 17
3
4 public class Test
5 {
6         protected void Method ()
7         {
8         }
9
10         private void Method (int i)
11         {
12         }
13 }
14
15 public class C
16 {
17         string str = nameof (Test.Method);
18 }