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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0619-16.cs
blob
379c7434bbbd563529d7fd2c5f1065c0aadb48a1
1
// cs0619-16.cs: `Test_A.Test_A()' is obsolete: `Causes an error'
2
// Line: 13
3
4
using
System
;
5
public class
Test_A
6
{
7
[
Obsolete
(
"Causes an error"
,
true
)]
8
public
Test_A
() {}
9
}
10
11
public class
Test_B
:
Test_A
12
{
13
public
Test_B
():
base
() {}
14
}