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
[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git]
/
mcs
/
errors
/
cs0246-35.cs
blob
79f1c785c8ab1644c70c8edfa933813579a3748c
1
// CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference?
2
// Line: 21
3
4
using static
A
;
5
6
class
A
:
B
7
{
8
}
9
10
class
P
11
{
12
public class
N
<
T
>
13
{
14
}
15
}
16
17
class
Test
18
{
19
public static void
Main
()
20
{
21
var
n
=
default
(
N
<
int
>);
22
}
23
}