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
* CommandLineException.cs (Message): Include the inner exception message
[mcs.git]
/
errors
/
cs0619-15.cs
blob
2bc429cdcce76edaef980946f4d58733dbac53cc
1
// cs0619-15.cs: `Test.Test()' is obsolete: `Causes an error'
2
// Line: 9
3
4
using
System
;
5
public class
Test
6
{
7
[
Obsolete
(
"Causes an error"
,
true
)]
8
public
Test
() {}
9
public
Test
(
bool
flag
) :
this
() {}
10
}