2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3019-3.cs
blobb10a2781b3c97b99d90f764ff514fe8039c2a54d
1 // CS3019: CLS compliance checking will not be performed on `CLSClass.Foo()' because it is not visible from outside this assembly
2 // Line: 8
3 // Compiler options: -warnaserror -warn:2
5 using System;
6 [assembly:CLSCompliant (true)]
8 public partial class CLSClass
10 [CLSCompliant (false)]
11 partial void Foo ();
13 partial void Foo ()