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-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs1674.cs
blob
8499d9c0b8f9827b16cb81a5fb284f85efc42b8c
1
// cs1674.cs: `int': type used in a using statement must be implicitly convertible to `System.IDisposable'
2
// Line: 8
3
4
class
C
5
{
6
void
Method
(
int
arg
)
7
{
8
using
(
arg
)
9
{
10
}
11
}
12
}