linux-packaging-mono/mcs/tests/gtest-fixedbuffer-10.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

28 lines
317 B
C#

// Compiler options: -unsafe
using System;
public class Program
{
public static void Main ()
{
new TestStruct ("a");
}
}
public unsafe struct TestStruct
{
private fixed byte symbol[30];
public TestStruct (string a)
{
}
public static TestStruct Default {
get {
TestStruct h;
return h;
}
}
}