mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
23 lines
376 B
C#
23 lines
376 B
C#
/*
|
|
semmle-extractor-options: /r:asm1=${testdir}/Assembly1.dll /r:asm2=${testdir}/Assembly2.dll
|
|
|
|
Class is defined in three places, and requires the alias to disambiguate them.
|
|
*/
|
|
|
|
extern alias asm1;
|
|
extern alias asm2;
|
|
|
|
class Class
|
|
{
|
|
}
|
|
|
|
class Tests
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
asm1::Class c1;
|
|
asm2::Class c2;
|
|
Class c3;
|
|
}
|
|
}
|