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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs8141.cs
blob
fd3c05f57f19e20459dc8c43e3ce296487282dff
1
// CS8141:
2
// Line: 9
3
4
public interface
I
<
T
>
5
{
6
T
Test
();
7
}
8
9
public class
C
:
I
<(
int
a
,
int
b
)>
10
{
11
public
(
int
c
,
int
d
)
Test
()
12
{
13
return
(
1
,
2
);
14
}
15
}