diff --git a/ICSharpCode.Decompiler.Tests/TestCases/Correctness/ValueTypeCall.cs b/ICSharpCode.Decompiler.Tests/TestCases/Correctness/ValueTypeCall.cs index 45eaaceb7..82b081632 100644 --- a/ICSharpCode.Decompiler.Tests/TestCases/Correctness/ValueTypeCall.cs +++ b/ICSharpCode.Decompiler.Tests/TestCases/Correctness/ValueTypeCall.cs @@ -238,16 +238,16 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Correctness static void ToStringGeneric(ref T mutRef, in T immutableRef) where T : struct { Console.WriteLine("ToStringGeneric:"); - mutRef.ToString(); - mutRef.ToString(); + Console.WriteLine(mutRef.ToString()); + Console.WriteLine(mutRef.ToString()); T copyFromMut = mutRef; - copyFromMut.ToString(); - immutableRef.ToString(); - immutableRef.ToString(); + Console.WriteLine(copyFromMut.ToString()); + Console.WriteLine(immutableRef.ToString()); + Console.WriteLine(immutableRef.ToString()); T copyFromImmutable = immutableRef; - copyFromImmutable.ToString(); - mutRef.ToString(); - immutableRef.ToString(); + Console.WriteLine(copyFromImmutable.ToString()); + Console.WriteLine(mutRef.ToString()); + Console.WriteLine(immutableRef.ToString()); } #endif }