repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0214-13.cs
blob
ec418c3697b7435f6f3af4434dd632c7df8a924d
1
// CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2
// Line: 7
3
// Compiler options: -unsafe
4
5
class
C
6
{
7
int
*[]
data
=
new int
*[
16
];
8
9
unsafe
C
()
10
{
11
}
12
}