diff options
Diffstat (limited to 'Tests/CSharpOnly/nested/lib1.cs')
-rw-r--r-- | Tests/CSharpOnly/nested/lib1.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/CSharpOnly/nested/lib1.cs b/Tests/CSharpOnly/nested/lib1.cs new file mode 100644 index 0000000..c2fde4b --- /dev/null +++ b/Tests/CSharpOnly/nested/lib1.cs @@ -0,0 +1,13 @@ +namespace CSharpOnly +{ + namespace nested + { + public class Lib1 + { + public static int getResult() + { + return 23; + } + } + } +} |