Files
CMake/Tests/CSharpOnly/nested/lib1.cs
Kinan Mahdi ac6b18cd90 CSharp: Add support for source groups with out-of-source builds
This also fixes support for multiple sources of the same name in
different directories.  Add a test for both problems.

Issue: #19505
2020-02-28 11:42:01 -05:00

14 lines
201 B
C#

namespace CSharpOnly
{
namespace nested
{
public class Lib1
{
public static int getResult()
{
return 23;
}
}
}
}