1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-16 23:34:10 +02:00
Beef/IDEHelper/Tests/src/Reflection2.bf

17 lines
212 B
Beef
Raw Normal View History

2021-11-23 15:01:10 -08:00
#pragma warning disable 168
using System;
namespace Tests
{
class Reflection2
{
[Test]
public static void TestBasics()
{
const Type t = typeof(StringView);
int fieldCount = t.FieldCount;
}
}
}