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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0642-5.cs
blob
fa85b83bbed36e58cf0124642d0e28df0e2ed29c
1
// cs0642-5.cs: Possible mistaken empty statement
2
// Line: 9
3
// Compiler options: -warnaserror -warn:3
4
5
public class
C
6
{
7
public void
Test
(
System
.
IDisposable arg
)
8
{
9
using
(
arg
);
10
{ }
11
}
12
}
13