Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-647.cs
1 using System;
2
3 enum DT : byte {
4         Foop
5 }
6
7 public class Foo
8 {
9         public static void Main ()
10         {
11                 DT dt;
12                 dt = (DT) byte.Parse ("123");
13                 dt = (DT) decimal.Parse ("123");
14         }
15 }
16