Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs3009-3.cs
1 // CS3009: `AttributesForm': base type `BaseClass' is not CLS-compliant
2 // Line: 17
3 // Compiler options: -warnaserror -warn:1
4
5
6 // The error is reported intentionally twice.
7
8 using System;
9
10 [assembly:CLSCompliant(true)]
11
12 [CLSCompliant(false)]
13 public class BaseClass
14 {
15 }
16
17 public class AttributesForm : BaseClass
18 {
19 }
20
21 public class AttributesForm_2 : BaseClass
22 {
23 }