summaryrefslogtreecommitdiff
path: root/tests/src/Loader/classloader/generics/Visibility/A_Types.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/Loader/classloader/generics/Visibility/A_Types.cs')
-rw-r--r--tests/src/Loader/classloader/generics/Visibility/A_Types.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/src/Loader/classloader/generics/Visibility/A_Types.cs b/tests/src/Loader/classloader/generics/Visibility/A_Types.cs
new file mode 100644
index 0000000000..9778c9003f
--- /dev/null
+++ b/tests/src/Loader/classloader/generics/Visibility/A_Types.cs
@@ -0,0 +1,12 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+
+public class C2Public{}
+public struct S2Public{}
+
+public class C2Private{}
+public struct S2Private{}
+