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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0764.cs
blob
4c89e72a3acbffe14c33bddaf9ff295f5ac609fa
1
// CS0764: A partial method declaration and partial method implementation must be both `unsafe' or neither
2
// Line: 11
3
// Compiler options: -unsafe
4
5
public partial class
C
6
{
7
unsafe partial void
Foo
()
8
{
9
}
10
11
partial void
Foo
();
12
}