[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / gtest-366.cs
blobdb450282b353d86ae2093d83f6e4022ba2ac3593
2 public struct MyType
4 int value;
6 public MyType (int value)
8 this.value = value;
11 public static implicit operator int (MyType o)
13 return o.value;
17 class Tester
19 static void Assert<T> (T expected, T value)
23 public static void Main ()
25 Assert (10, new MyType (10));