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 #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
errors
/
cs0246-26.cs
blob
1bf142762a68f7de3b3c9e2dcdae0f144788e194
1
// CS0246: The type or namespace name `M' could not be found. Are you missing an assembly reference?
2
// Line: 11
3
4
interface
I
<
T
>
5
{
6
void
G
<
TT
> ();
7
}
8
9
class
C
10
{
11
void
I
<
M
>.
G
<
M
> ()
12
{
13
}
14
15
public static void
Main
()
16
{
17
}
18
}