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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0133-3.cs
blob
52934a514725efee75646e72e09ac5a6f4f5a73f
1
// cs0133-3.cs: The expression being assigned to `Foo' must be constant
2
// Line: 12
3
4
class
T
5
{
6
public void
FooBar
()
7
{
8
const string
Foo
=
Foo
;
9
}
10
}