9 lines
184 B
C#
9 lines
184 B
C#
using System;
|
|
|
|
namespace Roslyn.Utilities;
|
|
|
|
[AttributeUsage(AttributeTargets.Struct | AttributeTargets.GenericParameter)]
|
|
internal sealed class NonDefaultableAttribute : Attribute
|
|
{
|
|
}
|