2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0221-5.cs
blobd30b25fa82e3c17c437214b52ed9bb485f2e6911
1 // cs0221.cs: Constant value `-1' cannot be converted to a `byte' (use `unchecked' syntax to override)
2 // Line: 11
4 using System;
6 public class My3Attribute : Attribute
8 public My3Attribute (byte b) {}
11 [My3((byte)-1)]
12 public class Test { }