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
Fix FxCop warning CA1018 (attributes should have AttributeUsage)
[mono-project.git]
/
mcs
/
errors
/
cs1674-4.cs
blob
22d17bd06bdf3681fc71d51e98c0d5cae070bfaf
1
// CS1674: `int': 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
(
int
o
=
1
,
b
=
2
)
11
{
12
}
13
}
14
}