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

cs1697.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1b6cc6fd4f162c31094c8a88adeb4e2431d2a8ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1697: Different checksum values specified for file `a.xml'
// Line: 6
// Compiler options: -debug -warnaserror

#pragma checksum "a.xml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "60d1c7f99b6e992275cf155c8a54c018"
#pragma checksum "a.xml" "{406ea660-64cf-4c82-b6f0-42d48172a799}" "60d1c7f99b6e992275cf155c8a54c019"
 
class TestClass
{
	static void Main()
	{
	}
}