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
Move Enum and CorElementType to shared (dotnet/coreclr#23177)
[mono-project.git]
/
mcs
/
tests
/
gtest-031.cs
blob
28184e613ac887f227bb2cd6dc860cd641071b67
1
// Compiler options: -r:gtest-031-lib.dll
2
3
public class
X
4
{
5
public static void
Test
(
Bar
<
int
,
string
>
bar
)
6
{
7
bar
.
Hello
(
"Test"
);
8
bar
.
Test
(
7
,
"Hello"
);
9
}
10
11
public static void
Main
()
12
{ }
13
}