Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1685.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a675e50159568d2889f6fac644d7466d1296477 (plain)
1
2
3
4
5
6
7
8
// CS1685: The predefined type `System.Int32' is ambiguous. Using definition from `mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
// Line: 6
// Compiler options: -warn:1 -warnaserror

namespace System {
	public struct Int32 {
	}
}