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
/
cs0210.cs
blob
3d8763f2de7bbeb0d7aaadc850919227097caadc
1
// CS0210: You must provide an initializer in a fixed or using statement declaration
2
// Line: 8
3
4
using
System
.
Resources
;
5
6
public class
MainClass
{
7
static void
Main
() {
8
using
(
ResourceReader reader
) {
9
}
10
}
11
}
12