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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
gtest-088.cs
blob
94eaa875c5aaff4af8247d18bdb9f53b5eeb1234
1
using
System
;
2
3
public struct
KeyValuePair
<
K
,
V
>
4
{
5
public
KeyValuePair
(
K k
,
V v
)
6
{ }
7
8
public
KeyValuePair
(
K k
)
9
{ }
10
}
11
12
class
X
13
{
14
public static void
Main
()
15
{
16
new
KeyValuePair
<
int
,
long
> ();
17
}
18
}