Browse Source

Add testing of overloaded methods to COM V-table test

pull/2639/head
Zachary Northrup 3 years ago committed by Siegfried Pammer
parent
commit
0921d83e0d
  1. 4
      ICSharpCode.Decompiler.Tests/TestCases/Correctness/ComInterop.cs

4
ICSharpCode.Decompiler.Tests/TestCases/Correctness/ComInterop.cs

@ -29,14 +29,18 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Correctness @@ -29,14 +29,18 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Correctness
int MyMethod1();
int MyProperty1 { get; }
int MyOverload();
int MyMethod2();
int MyProperty2 { get; set; }
int MyOverload(int x);
event EventHandler MyEvent1;
int MyMethod3();
}
}
}

Loading…
Cancel
Save