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
for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git]
/
mcs
/
errors
/
cs0619-5.cs
blob
9d30758ac2c56a3450391299bb22333047581518
1
// CS0619: `A' is obsolete: `Do not use it'
2
// Line: 12
3
4
using
System
;
5
6
[
Obsolete
(
"Do not use it"
,
true
)]
7
class
A
{
8
}
9
10
class
B
{
11
static
A _a
=
new
A
();
12
}