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

cs1730.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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")]