Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

28 lines
430 B
C#

using System;
using System.Diagnostics;
public class ShiftReduceParser<TokenValueType, TokenLocationType>
{
[Conditional ("DUMP")]
public static void Dump (string format)
{
throw new ApplicationException ();
}
}
public class Parser : ShiftReduceParser<int, int>
{
[Conditional ("DUMP")]
static void NoCall<T> (T t)
{
}
public static int Main ()
{
Dump ("Should not be called");
NoCall (1);
return 0;
}
}