TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs0122-7.cs
blobae574bb0a0405cab748b8fa8c3c4e0730d7425d1
1 // CS0122: `BB.AnEvent' is inaccessible due to its protection level
2 // Line: 10
4 using System;
6 class X
8 static void Main ()
10 BB b = new BB ();
11 b.AnEvent += DoIt;
14 public static void DoIt (object sender, EventArgs args) {}
17 public class BB
19 event EventHandler AnEvent;