summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1730.cs
blob: 74ef7faf4f01f91dcda247d577557e1a62b7894e (plain)
1
2
3
4
5
6
7
8
9
10
// CS1730: Assembly and module attributes must precede all other elements except using clauses and extern alias declarations
// Line: 10

using System.Reflection;

class Test
{
}

[assembly: AssemblyTitle("Test")]