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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0103-15.cs
blob
b2448445d898bfc7f32010d6e43b5ed9168af295
1
// CS0103: The name `List' does not exist in the current context
2
// Line: 8
3
4
class
X
5
{
6
public static void
Main
()
7
{
8
var
r
=
nameof
(
List
<
int2
>);
9
}
10
}