summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3003-7.cs
blob: ff8f0441e0b2a0a1b7811c9bb9435883b3e8c5a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS3003: Type of `C._data' is not CLS-compliant
// Line: 11
// Compiler options: -unsafe -warnaserror -warn:1

using System;

[assembly: CLSCompliant (true)]

public class C
{
	public unsafe byte* _data;
	public unsafe byte* GetData () { return _data; }
}