repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs3003-7.cs
blob
ff8f0441e0b2a0a1b7811c9bb9435883b3e8c5a0
1
// CS3003: Type of `C._data' is not CLS-compliant
2
// Line: 11
3
// Compiler options: -unsafe -warnaserror -warn:1
4
5
using
System
;
6
7
[
assembly
:
CLSCompliant
(
true
)]
8
9
public class
C
10
{
11
public unsafe byte
*
_data
;
12
public unsafe byte
*
GetData
()
{ return _data; }
13
}