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
/
cs0246-8.cs
blob
126b707b195cfb1902ae84a1c0ceac3953519ffb
1
// CS0246: The type or namespace name `Reflection' could not be found. Are you missing an assembly reference?
2
// Line: 7
3
using
System
;
4
5
class
foo
{
6
static void
Main
(
string
[]
args
) {
7
Reflection
.
ConstructorInfo ci
;
8
}
9
}
10