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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0619-50.cs
blob
e4d6c1d20ef902563c00a49f6338417800b17062
1
// cs0619-50.cs: `A.B' is obsolete: `yes'
2
// Line: 12
3
4
using
Z
=
A
.
B
;
5
6
class
A
7
{
8
[
System
.
Obsolete
(
"yes"
,
true
)]
9
public class
B
10
{
11
}
12
13
static void
Main
()
14
{
15
Z z
;
16
}
17
}