[xbuild] Add support for Before/AfterTargets.
[mono.git] / mcs / errors / cs1685.cs
1 // CS1685: The predefined type `System.Int32' is redefined in the source code. Ignoring the local type definition
2 // Line: 0
3 // Compiler options: -warn:1 -warnaserror
4
5 namespace System {
6         public struct Int32 {
7         }
8 }