Merge pull request #4928 from kumpera/ptr_to_struct_intrinsic
[mono.git] / mcs / tests / gtest-exmethod-40.cs
1 // Compiler options: -r:gtest-exmethod-40-lib.dll
2
3 namespace N.Extensions
4 {
5         public static class s
6         {
7                 public static void ShouldEqual (this string text, string name, string value, string domain, string path)
8                 {
9                 }
10         }
11 }
12
13
14 namespace N.Main
15 {
16         using N.Extensions;
17
18         public class C
19         {
20                 public static void Main ()
21                 {
22                         string v = "";
23                         v.ShouldEqual ("");
24                 }
25         }
26 }