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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0133-3.cs
blob
2f7dac6880d0f9825b66eca252826db1f915a77f
1
// CS0133: The expression being assigned to `Foo' must be a constant or default value
2
// Line: 8
3
4
class
T
5
{
6
public void
FooBar
()
7
{
8
const string
Foo
=
Foo
;
9
}
10
}