/wine-mono-0.0.4/mono/mcs/errors/cs0067.cs
# · C# · 17 lines · 9 code · 5 blank · 3 comment · 0 complexity · d43419fb6ceb8502ea14e5ac3e1f28df MD5 · raw file
- // CS0067: The event `Foo.OnFoo' is never used
- // Line: 12
- // Compiler options: -warnaserror -warn:4
- using System;
- class ErrorCS0067 {
- public delegate void FooHandler ();
- }
- class Foo {
- private event ErrorCS0067.FooHandler OnFoo;
-
- public static void Main () {
- }
- }