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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0618-2.cs
blob
aeae63a334b4074a6f10b1fa8af51aff0e1806fa
1
// cs0618-2.cs: `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
}