aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/49 pkgconfig csharp library/somelib.cs
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/unit/49 pkgconfig csharp library/somelib.cs')
-rw-r--r--test cases/unit/49 pkgconfig csharp library/somelib.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/test cases/unit/49 pkgconfig csharp library/somelib.cs b/test cases/unit/49 pkgconfig csharp library/somelib.cs
new file mode 100644
index 0000000..24d37ed
--- /dev/null
+++ b/test cases/unit/49 pkgconfig csharp library/somelib.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace Abc
+{
+ public static class Something
+ {
+ public static bool Api1(this String str)
+ {
+ return str == "foo";
+ }
+ }
+}