Browse Source

#1837 Add combined test with tuples, dynamic and nullability

pull/1843/head
Siegfried Pammer 6 years ago
parent
commit
51cf7e7c34
  1. 3
      ICSharpCode.Decompiler.Tests/TestCases/Pretty/PropertiesAndEvents.cs

3
ICSharpCode.Decompiler.Tests/TestCases/Pretty/PropertiesAndEvents.cs

@ -196,6 +196,9 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty @@ -196,6 +196,9 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
public event EventHandler<dynamic> DynamicAutoEvent;
public event EventHandler<(int A, string B)> AutoEventWithTuple;
#endif
#if CS80
public event EventHandler<(int a, dynamic? b)> ComplexAutoEvent;
#endif
public event EventHandler CustomEvent {
add {

Loading…
Cancel
Save