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-645-lib.cs
blob
24c31d78a1e75bfb1455336088ab72ca687471f9
1
// Compiler options: -target:library
2
3
namespace
SeparateAssembly
4
{
5
public interface
IGenericAction
<
T1
,
T2
>
6
{
7
void
AddAction
(
IGenericAction
<
T1
,
T2
>
action
);
8
void
AddAction
(
IGenericAction
<
T2
,
T1
>
action
);
9
}
10
}