1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Const actualization fixes

This commit is contained in:
Brian Fiete 2021-11-23 15:01:10 -08:00
parent 870c9914be
commit a7da8a75d6
3 changed files with 22 additions and 2 deletions

View file

@ -0,0 +1,16 @@
#pragma warning disable 168
using System;
namespace Tests
{
class Reflection2
{
[Test]
public static void TestBasics()
{
const Type t = typeof(StringView);
int fieldCount = t.FieldCount;
}
}
}