summaryrefslogtreecommitdiff
path: root/mcs/errors/cs8009.cs
blob: 851e06653eb6e592567746f9087a18e79c5f510e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS8009: Referenced assembly `CS8009-lib' has different culture setting of `en-US'
// Line: 0
// Compiler options: -r:CS8009-lib.dll -warnaserror

using System;

class Program
{
	static void Main ()
	{
		Console.WriteLine (typeof (Lang));
	}
}