mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
21 lines
281 B
C#
21 lines
281 B
C#
/*
|
|
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;
|
|
}
|
|
}
|