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
[build] Fix warning (#4177)
[mono-project.git]
/
mcs
/
tests
/
gtest-exmethod-28.cs
blob
012068204ae939b3d38dcc042bc6c9add6c64912
1
using
System
;
2
3
class
Foo { }
4
5
static partial class
Extensions
6
{
7
public static bool
IsFoo
(
this
Foo self
)
8
{
9
return true
;
10
}
11
}
12
13
class
Bar { }
14
15
partial class
Extensions
16
{
17
public static bool
IsBar
(
this
Bar self
)
18
{
19
return true
;
20
}
21
}
22
23
class
Program
24
{
25
public static void
Main
()
26
{
27
}
28
}