Files
codeql/csharp/ql/test/library-tests/csharp10/LinePragmas.cs
2022-01-18 09:32:14 +01:00

12 lines
215 B
C#

using System;
public class MyLineDirective
{
public static void M1()
{
#line (1, 1) - (1, 30) 5 "LinePragmasRef1.cs"
int i = 0;
#line (2, 1) - (5, 32) "LinePragmasRef2.cs"
int j = 0;
}
}