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
Make csproj target work again
[mcs.git]
/
errors
/
cs0283-3.cs
blob
3d71aad4831f1d6008cb032542ecde4b9b1d86e3
1
// CS0283: The type `int*' cannot be declared const
2
// Line: 10
3
// Compiler options: -unsafe
4
5
unsafe class
Test
6
{
7
const int
*
o
=
null
;
8
}