Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs')
-rw-r--r--UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
index 2abcd16..089c1b8 100644
--- a/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
+++ b/UnitTests/MonoDevelop.Debugger.Tests.TestApp/TestEvaluation.cs
@@ -340,6 +340,13 @@ namespace MonoDevelop.Debugger.Tests.TestApp
BaseClass bar = new OverrideClass();
INamedTypeSymbol namedTypeSymbol = new NamedTypeSymbol ();
+ byte[] rawByteArray = new byte[256];
+ char[] rawCharArray = new char[256];
+ for (int i = 0; i < 256; i++) {
+ rawByteArray[i] = (byte) i;
+ rawCharArray[i] = (char) i;
+ }
+
Console.WriteLine (n); /*break*/
}