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
Warnings cleanup
[mcs.git]
/
tests
/
test-321.cs
blob
d3890b813bd330e744d0358f1e4e8597925c1fbb
1
using
System
;
2
3
struct
X
:
IDisposable
{
4
public void
Dispose
()
5
{
6
}
7
8
static void
Main
()
9
{
10
X x
=
new
X
();
11
using
(
x
)
12
;
13
}
14
}