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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs')
-rw-r--r--src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs
new file mode 100644
index 00000000000..64609af24a5
--- /dev/null
+++ b/src/mono/wasm/debugger/tests/debugger-test-with-full-debug-type/test.cs
@@ -0,0 +1,20 @@
+using System;
+
+namespace DebuggerTests
+{
+ public class ClassToInspectWithDebugTypeFull
+ {
+ int a;
+ int b;
+ int c;
+ public ClassToInspectWithDebugTypeFull()
+ {
+ a = 10;
+ b = 20;
+ c = 30;
+ Console.WriteLine(a);
+ Console.WriteLine(b);
+ Console.WriteLine(c);
+ }
+ }
+} \ No newline at end of file