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
[MonoDataSqlite] Add test for Xamarin.iOS specific bug 27864
[mono-project.git]
/
mcs
/
errors
/
cs0428-2.cs
blob
5f468fd519adff276572a642417853e535445684
1
// CS0428: Cannot convert method group `Main' to non-delegate type `void*'. Consider using parentheses to invoke the method
2
// Line: 9
3
// Compiler options: -unsafe
4
5
unsafe class
C
6
{
7
public static void
Main
()
8
{
9
fixed
(
void
*
f
=
Main
)
10
{
11
}
12
}
13
}