[mcs] Consider method candidates with misplaced named arguments not applicable. Fixes...
[mono.git] / mcs / errors / cs0208-18.cs
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `S'
2 // Line: 9
3 // Compiler options: /unsafe
4
5 unsafe public class C
6 {
7         S* i;
8 }
9
10 public struct S
11 {
12         AC ac;
13 }
14
15 abstract class AC
16 {
17 }