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
/
gcs0416.cs
blob
a56ac6f06d77d245a5a8a76a08487559e047ba92
1
// CS0416: `C<T>': an attribute argument cannot use type parameters
2
// Line: 15
3
4
using
System
;
5
6
public class
TestAttribute
:
Attribute
7
{
8
public
TestAttribute
(
Type type
)
9
{
10
}
11
}
12
13
class
C
<
T
>
14
{
15
[
Test
(
typeof
(
C
<
T
>))]
16
public static void
Foo
()
17
{
18
}
19
}