2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3009-3.cs
blobbbbb8f54bbf9dd3ec7c4a3912a5dee180ddfd7c0
1 // CS3009: `AttributesForm': base type `BaseClass' is not CLS-compliant
2 // Line: 17
3 // Compiler options: -warnaserror -warn:1
6 // The error is reported intentionally twice.
8 using System;
10 [assembly:CLSCompliant(true)]
12 [CLSCompliant(false)]
13 public class BaseClass
17 public class AttributesForm : BaseClass
21 public class AttributesForm_2 : BaseClass