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
/
cs0133.cs
blob
55e016676fd1ad0e2b27512f951100e8f3f9ec7d
1
// cs0133.cs: The expression being assigned to `x' must be constant
2
// Line: 6
3
class
X
{
4
X
(
int
arg
)
5
{
6
const int
x
=
arg
;
7
}
8
}