mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
17 lines
265 B
C#
17 lines
265 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();
|
|
}
|
|
}
|