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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0619-56.cs
blob
d26a14728b15b9aca12e049086261cd89c1a4080
1
// CS0619: `A' is obsolete: `stop'
2
// Line: 11
3
4
using
System
;
5
6
[
Obsolete
(
"stop"
,
true
)]
7
public class
A
8
{
9
}
10
11
public class
C
<
T
>
where T
:
A
12
{
13
}