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
in System.Collections.Generic:
[mcs.git]
/
tests
/
test-186.cs
blob
e4c28b5b37d52e6566c2106e1496514b210380f2
1
using
System
;
2
3
namespace
TestBUG
4
{
5
public class
myAttribute
:
Attribute
6
{
7
public
myAttribute
(
string
p1
,
string
p2
,
string
p3
,
int
p4
) {}
8
}
9
10
//
11
// Typecasts on attributes, fix for bug 37363
12
//
13
[
myAttribute
(
"stringArgument"
, (
String
)
null
, (
String
)
null
,
2
)]
14
public class
Test
15
{
16
17
static int
Main
()
18
{
19
return
0
;
20
}
21
}
22
}
23
24
25
26
27
28