2008-02-19 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs1685.cs
1 // CS1685: The type `System.Int32' conflicts with the predefined type `int' and will be ignored
2 // Line: 6
3 // Compiler options: -warn:1 -warnaserror
4
5 namespace System {
6         public struct Int32 {
7         }
8 }