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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs1674.cs
blob
e586f62556fc87022ae7ca677e45f376b7ee75c5
1
// CS1674: `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
}