Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1525-56.cs
1 // CS1525: Unexpected symbol `string', expecting `,' or `]'
2 // Line: 5
3
4 public class TestApp {
5         static void Main ([MarshalAs (UnmanagedType.LPStr) string[] args)
6         {
7         }
8 }