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
/
cs0283-4.cs
blob
62fa370d7b0b1e194142e86da52abd30b30d8d13
1
// CS0283: The type `int?' cannot be declared const
2
// Line: 8
3
4
class
C
5
{
6
void
Test
()
7
{
8
const int
?
ac
=
null
;
9
}
10
}