repo.or.cz
/
mono-debugger.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mono-debugger.git]
/
mono
/
dis
/
tests
/
gen-cattr.cs
blob
adc7ef5e1e2869cfce819484af2d636b23e033f3
1
/* Custom attributes for type parameters */
2
using
System
;
3
4
[
AttributeUsage
(
AttributeTargets
.
GenericParameter
)]
5
class
GenParAttribute
:
Attribute
{
6
}
7
8
class
cons
<[
GenPar
]
A
> {
9
public void
abc
<[
GenPar
]
M
> () {
10
}
11
}
12
13
class
Test
{
14
public static void
Main
()
15
{
16
}
17
}