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
[tuner] handle the case with multiple "preserve" attributes
[mono-project.git]
/
mcs
/
tests
/
test-246.cs
blob
1caf43e5187d227b3dcb7dd94212bff0364b54c6
1
using
System
;
2
3
struct
Blah
:
System
.
IDisposable
{
4
public void
Dispose
() {
5
Console
.
WriteLine
(
"foo"
);
6
}
7
}
8
9
class
B
{
10
public static void
Main
() {
11
using
(
Blah b
=
new
Blah
()) {
12
Console
.
WriteLine
(
"..."
);
13
}
14
}
15
}