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
2009-06-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0619-46.cs
blob
c64e396a6fd1aeb7a7570350226a4fa109de4e13
1
// cs0619-46.cs: `C' is obsolete: `Is obsolete'
2
// Line: 16
3
4
using
System
;
5
6
[
Obsolete
(
"Is obsolete"
,
true
)]
7
class
C
8
{
9
public static string
SS
;
10
}
11
12
class
MainClass
13
{
14
public static void
Main
()
15
{
16
Console
.
WriteLine
(
C
.
SS
);
17
}
18
}