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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0618-2.cs
blob
9f43ef9974f261a31385c6fc9925635099f3db5b
1
// CS0618: `ObsoleteDispose' is obsolete: `Class is obsolete'
2
// Line: 9
3
// Compiler options: -reference:CS0618-2-lib.dll -warnaserror
4
5
class
AA
6
{
7
public
AA
()
8
{
9
using
(
ObsoleteDispose od
=
ObsoleteDispose
.
Factory
) {
10
}
11
}
12
}