You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
361 B

using System;
namespace Burst.Compiler.IL.Tests
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
#if BURST_INTERNAL
public
#else
internal
#endif
class MonoOnlyAttribute : Attribute
{
#pragma warning disable CS0414
public MonoOnlyAttribute(string reason)
{
}
#pragma warning restore CS0414
}
}