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
/
cs1601.cs
blob
2bd9188e07f2b4dc0cdc983799b54172c0a7476c
1
// CS1601: Method or delegate parameter cannot be of type `ref System.TypedReference'
2
// Line: 10
3
using
System
;
4
5
class
X
{
6
static void
Main
()
7
{
8
}
9
10
static void
M
(
ref
TypedReference a
)
11
{
12
}
13
}