Signed-off-by: Dimitar Dobrev <dpldobrev@yahoo.com>
@ -15,6 +15,5 @@ public class UTF16Tests
// TODO: move this, it has nothing to do with Unicode, it's here only not to break the CLI branch
Assert.That(foo[0], Is.EqualTo(5));
Assert.That(foo.OperatorSubscript(0), Is.EqualTo(IntPtr.Zero));
}
@ -6,7 +6,7 @@ int Foo::operator[](int i) const
return 5;
char* Foo::operator[](int i)
int Foo::operator[](int i)
{
return 0;
@ -11,7 +11,7 @@ public:
int operator[](int i) const;
char* operator[](int i);
int operator[](int i);
};
DLL_API int FooCallFoo(Foo* foo);