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
Merge pull request #15293 from lewing/wasm-clean
[mono-project.git]
/
mcs
/
tests
/
gtest-exmethod-09.cs
blob
e780e6080c50c19f9873cd6ffa77ad407c0d8326
1
2
3
static class
Test
4
{
5
public static void
Foo
<
T
> (
this string
p1
)
6
{
7
}
8
}
9
10
class
C
11
{
12
public static void
Main
()
13
{
14
//int x = Test.Foo<bool> ("bb");
15
"a"
.
Foo
<
bool
> ();
16
}
17
}