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
2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0210.cs
blob
0a4b0b1aaf6ca7744f7f1cd78b5cdf820f095d9b
1
// cs0210.cs: 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