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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'linker/Tests/Mono.Linker.Tests.Cases/Basic/UnusedClassGetsRemoved.cs')
-rw-r--r--linker/Tests/Mono.Linker.Tests.Cases/Basic/UnusedClassGetsRemoved.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/linker/Tests/Mono.Linker.Tests.Cases/Basic/UnusedClassGetsRemoved.cs b/linker/Tests/Mono.Linker.Tests.Cases/Basic/UnusedClassGetsRemoved.cs
new file mode 100644
index 000000000..85d60e33d
--- /dev/null
+++ b/linker/Tests/Mono.Linker.Tests.Cases/Basic/UnusedClassGetsRemoved.cs
@@ -0,0 +1,10 @@
+namespace Mono.Linker.Tests.Cases.Basic {
+ public class UnusedClassGetsRemoved {
+ public static void Main ()
+ {
+ }
+ }
+
+ class Unused {
+ }
+} \ No newline at end of file