[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0122-6.cs
blobd0952cfcdf2ccf2c1aa2e513c46cdcb0c9d0dbcf
1 // CS0122: `Test.Foo.IBar' is inaccessible due to its protection level
2 // Line: 11
4 public class Test
6 public class Foo
8 protected interface IBar {}
11 private class Bar : Foo.IBar
15 public static void Main () {}