a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
28 lines
430 B
C#
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;
|
|
}
|
|
}
|