mirror of
https://github.com/reactos/CMake.git
synced 2025-01-19 01:42:18 +00:00
ac6b18cd90
This also fixes support for multiple sources of the same name in different directories. Add a test for both problems. Issue: #19505
14 lines
278 B
C#
14 lines
278 B
C#
namespace CSharpOnly
|
|
{
|
|
class CSharpOnly
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
int val = Lib1.getResult();
|
|
Lib2 l = new Lib2();
|
|
val = val + l.myVal + nested.Lib1.getResult();
|
|
return;
|
|
}
|
|
}
|
|
}
|