2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3002-4.cs
blobbf793c11565f66d0bf2ed15f1aeda842614bb667
1 // CS3002: Return type of `CLSClass.Foo()' is not CLS-compliant
2 // Line: 10
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly:CLSCompliant(true)]
8 public class CLSClass
10 protected ulong[] Foo()
12 return null;