2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-12.cs
blob436f6cdd0f85e9c23b07eec4f938595ae4ed0b95
1 // cs0019.cs: Operator `*' cannot be applied to operands of type `E' and `E'
2 // Line : 10
4 enum E: byte {
5 Min
8 class T {
9 static void Main () {
10 E error = E.Min * E.Min;