Display error messages instead of stack traces.
[mcs.git] / errors / cs3009-3.cs
blob6caffbfe02dde56cb4555bb6ef15f12e57a579e2
1 // cs3009-3.cs: `AttributesForm': base type `BaseClass' is not CLS-compliant
2 // Line: 14
3 // The error is reported intentionally twice.
5 using System;
7 [assembly:CLSCompliant(true)]
9 [CLSCompliant(false)]
10 public class BaseClass
14 public class AttributesForm : BaseClass
18 public class AttributesForm_2 : BaseClass