cleol
[mcs.git] / tests / gtest-345.cs
blobd191885cca3d0e8cca7ee1a11a54404c385d66c3
1 using System;
2 using System.Diagnostics;
4 public class ShiftReduceParser<TokenValueType, TokenLocationType>
6 [Conditional ("DUMP")]
7 public static void Dump (string format)
9 throw new ApplicationException ();
13 public class Parser : ShiftReduceParser<int, int>
15 [Conditional ("DUMP")]
16 static void NoCall<T> (T t)
20 public static int Main ()
22 Dump ("Should not be called");
23 NoCall (1);
25 return 0;