Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-309.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b3f74c2b0371779580c2cc978e7ffcd78dee1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace MonoBASIC {
	enum Token {
		EOF
	}
	public class Parser {
		public static void Main()
		{
		}
		public class StateMachine  {
			public enum Token {
				ONE
			}

			public void HandleToken(Token tok)
			{	
			}

		}
	}
}