summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0122-21.cs
blob: 78a63ca4ffa73c8ac7a671929dcbe9757f556f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0122: `Const.Version' is inaccessible due to its protection level
// Line: 6

using System.Reflection;

[assembly: AssemblyVersion(Const.Version)]

class Const
{
	const string Version = "0.1";
}