1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-28 04:28:01 +02:00
Beef/IDE/mintest/src/main3.bf

44 lines
493 B
Beef
Raw Normal View History

#pragma warning disable 168
using System;
using System.Diagnostics;
using System.Threading;
2020-04-10 08:58:12 -07:00
using System.Collections.Generic;
2020-04-10 08:58:12 -07:00
struct Smibbs
{
2020-04-10 08:58:12 -07:00
public int16 mX = 11;
public int16 mY = 22;
public int16 mZ = 33;
}
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-04-10 08:58:12 -07:00
public int c;
}
2020-04-10 08:58:12 -07:00
struct A
{
2020-04-10 08:58:12 -07:00
public B Prop { get; set; }
}
2020-04-10 08:58:12 -07:00
class Program
{
2020-04-10 08:58:12 -07:00
public static void Main()
{
var c = '¥';
}
}
2020-04-10 08:58:12 -07: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
}
}