ErrArgNoRef
using Microsoft.CSharp.RuntimeBinder.Semantics;
namespace Microsoft.CSharp.RuntimeBinder.Errors
{
internal sealed class ErrArgNoRef : ErrArg
{
public ErrArgNoRef(CType pType)
{
eak = ErrArgKind.Type;
eaf = ErrArgFlags.None;
base.pType = pType;
}
}
}