[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / errors / cs0208-5.cs
blob6cfe5c2b863e57fb359db03a8ba96e7ce87904e4
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `X'
2 // Line: 8
3 // Compiler options: -unsafe
5 unsafe struct X {
6 string a;
7 static void Main () {
8 X* y;