cd0ff6bd32729626305d2845528144207157c8ec
[mono.git] / mcs / errors / cs3005-11.cs
1 // cs3005.cs: Identifier 'clsInterface' differing only in case is not CLS-compliant
2 // Line: 10
3
4 using System;
5 [assembly:CLSCompliant (true)]
6
7 public interface CLSInterface {
8 }
9
10 public class clsInterface: CLSInterface {
11 }