2019-09-21 10:49:35 -07:00
|
|
|
#pragma warning disable 168
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Threading;
|
2020-04-10 08:58:12 -07:00
|
|
|
using System.Collections.Generic;
|
2019-09-21 10:49:35 -07:00
|
|
|
|
2020-04-10 08:58:12 -07:00
|
|
|
struct Smibbs
|
2020-01-06 13:49:35 -08:00
|
|
|
{
|
2020-04-10 08:58:12 -07:00
|
|
|
public int16 mX = 11;
|
|
|
|
public int16 mY = 22;
|
|
|
|
public int16 mZ = 33;
|
2020-01-06 13:49:35 -08:00
|
|
|
}
|
|
|
|
|
2020-04-10 08:58:12 -07:00
|
|
|
namespace PropertyStructCrash
|
2019-09-29 07:44:39 -07:00
|
|
|
{
|
2020-04-10 08:58:12 -07:00
|
|
|
struct B
|
2020-01-06 13:49:35 -08:00
|
|
|
{
|
2020-04-10 08:58:12 -07:00
|
|
|
public int c;
|
2020-01-06 13:49:35 -08:00
|
|
|
}
|
|
|
|
|
2020-04-10 08:58:12 -07:00
|
|
|
struct A
|
2020-01-06 13:49:35 -08:00
|
|
|
{
|
2020-04-10 08:58:12 -07:00
|
|
|
public B Prop { get; set; }
|
2020-01-06 13:49:35 -08:00
|
|
|
}
|
|
|
|
|
2020-04-10 08:58:12 -07:00
|
|
|
class Program
|
2020-01-06 13:49:35 -08:00
|
|
|
{
|
2020-04-10 08:58:12 -07:00
|
|
|
public static void Main()
|
|
|
|
{
|
|
|
|
var c = '¥';
|
|
|
|
}
|
2020-01-06 13:49:35 -08:00
|
|
|
}
|
2020-04-10 08:58:12 -07:00
|
|
|
}
|
2020-01-06 13:49:35 -08:00
|
|
|
|
2020-04-10 08:58:12 -07:00
|
|
|
struct Blurg
|
|
|
|
{
|
|
|
|
public static void Hey()
|
2019-12-11 16:56:09 -08:00
|
|
|
{
|
2020-04-10 08:58:12 -07:00
|
|
|
PropertyStructCrash.Program.Main();
|
2019-12-11 16:56:09 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|