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:
parent
870c9914be
commit
a7da8a75d6
3 changed files with 22 additions and 2 deletions
16
IDEHelper/Tests/src/Reflection2.bf
Normal file
16
IDEHelper/Tests/src/Reflection2.bf
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue