[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs0067.cs
1 // CS0067: The event `Foo.OnFoo' is never used
2 // Line: 12
3 // Compiler options: -warnaserror -warn:4
4
5 using System;
6
7 class ErrorCS0067 {
8         public delegate void FooHandler ();
9 }
10
11 class Foo {
12         private event ErrorCS0067.FooHandler OnFoo;
13         
14         public static void Main () {
15         }
16 }
17