mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
215 B
C#
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;
|
|
}
|
|
} |