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
resync
[mcs.git]
/
errors
/
cs1674-2.cs
blob
f6f4478f6a1c6125c6ef510be6347ca144968302
1
// cs1674-2.cs: `object': type used in a using statement must be implicitly convertible to `System.IDisposable'
2
// Line: 10
3
4
using
System
;
5
6
class
C
7
{
8
void
Method
(
IDisposable i
)
9
{
10
using
(
object
o
=
i
)
11
{
12
}
13
}
14
}