summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1577.cs
blob: 89a382728a4a1400afdf9c0eee532b22c70980e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1577: Referenced assembly `CS1577-lib, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' does not have a strong name
// Line: 0
// Compiler options: -keyfile:cs1577.snk -r:CS1577-lib.dll

class Test
{
	static void Main ()
	{
		C c = new C ();
	}
}