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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0619-16.cs
blob
3ddce88e74c686179462704458b0533c0225649d
1
// CS0619: `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
}