// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
// ----------------------------------------------------------------------------
// MethodGroupType - a placeholder typesym used only as the type of an method
// group expression. There is exactly one of these.
// ----------------------------------------------------------------------------
internal sealed class MethodGroupType : CType
{
public static readonly MethodGroupType Instance = new MethodGroupType();
private MethodGroupType()
: base(TypeKind.TK_MethodGroupType)
{
}
}
}
|