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
[mono/tests] Fix out of tree build.
[mono-project.git]
/
mcs
/
tests
/
gtest-525.cs
blob
b0c420f4c1a3e9be5e9e5e5ef25113c61676c9ed
1
using
System
;
2
3
class
A
4
{
5
static void
MA
<
T
> (
string
s
)
6
{
7
}
8
9
static void
F
()
10
{
11
}
12
13
public class
C
14
{
15
Func
<
int
>
MA
;
16
int
F
;
17
18
void
Foo
()
19
{
20
F
();
21
MA
<
int
> (
""
);
22
}
23
24
public static void
Main
()
25
{
26
new
C
().
Foo
();
27
}
28
}
29
}