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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
tests
/
gtest-463.cs
blob
2ad02ea6c967dcf1b255c62762fed452c6c21998
1
public partial struct
STuple
<
Ta
>
{ }
2
public partial struct
STuple
<
Ta
>
3
{
4
private readonly
Ta a
;
5
public
STuple
(
Ta a
)
{ this.a = a; }
6
}
7
8
class
C
9
{
10
public static int
Main
()
11
{
12
new
STuple
<
int
> ();
13
return
0
;
14
}
15
}