* Cache.cs: When using sliding expiration update the cache objects
[mono.git] / mcs / errors / cs0248.cs
1 // cs0248.cs: Cannot create an array with a negative size\r
2 // Line: 6\r
3 \r
4 public class MainClass {\r
5         public static void Main () {\r
6                 byte[] byteArray = new byte[-1];\r
7         }\r
8 }\r
9 \r
10 \r