mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
19 lines
328 B
C#
19 lines
328 B
C#
using System;
|
|
using Assembly1;
|
|
using Locations;
|
|
|
|
namespace TestAssemblies
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.Out.WriteLine(Class1.d());
|
|
}
|
|
|
|
Locations.Test l = new Locations.Test();
|
|
}
|
|
}
|
|
|
|
// semmle-extractor-options: /r:System.Runtime.Extensions.dll
|