2005-06-29 Sureshkumar T <tsureshkumar@novell.com>
[mono.git] / mcs / errors / cs3008-5.cs
1 // cs3008.cs: Identifier 'I._()' is not CLS-compliant
2 // Line: 8
3
4 using System;
5 [assembly:CLSCompliant(true)]
6
7 public interface I {
8         void _();
9 }