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
use MOONLIGHT symbol
[mcs.git]
/
errors
/
gcs0619.cs
blob
c4abd6a2254423d669f6b1524c8acba4b0f91101
1
// CS0619: `ObsoleteInterface<T>' is obsolete: `'
2
// Line: 15
3
4
using
System
;
5
6
[
Obsolete
(
""
,
true
)]
7
interface
ObsoleteInterface
<
T
>
8
{
9
}
10
11
class
C
12
{
13
public static void
Main
()
14
{
15
var
v
=
typeof
(
ObsoleteInterface
<>);
16
}
17
}