Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0764.cs
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 }