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

cs1576.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca02072b9009be397733244ce450ca8ec33f381f (plain)
1
2
3
4
5
6
7
8
9
10
// CS1576: The line number specified for #line directive is missing or invalid
// Line: 8

public struct S
{
   static void Main()
   {
      #line "error"
   }
}