imported everything from my branch (which is slightly harmless).
[mono.git] / mcs / errors / cs1041.cs
1 // cs1041.cs: Identifier expected, 'int' is a keyword
2 // Line: 5
3
4 public class Test {
5     void T (int int) {}
6 }