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
/
cs4005.cs
blob
9570f81aa93f39ca2a5b90f9c2bde2ac952321eb
1
// CS4005: Async methods cannot have unsafe parameters
2
// Line: 7
3
// Compiler options: -unsafe
4
5
class
C
6
{
7
public unsafe async void
Test
(
int
*
arg
)
8
{
9
}
10
}