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 'test/Mono.Linker.Tests.Cases/Symbols/AssemblyWithDefaultSymbols.cs')
-rw-r--r--test/Mono.Linker.Tests.Cases/Symbols/AssemblyWithDefaultSymbols.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Mono.Linker.Tests.Cases/Symbols/AssemblyWithDefaultSymbols.cs b/test/Mono.Linker.Tests.Cases/Symbols/AssemblyWithDefaultSymbols.cs
new file mode 100644
index 000000000..eb8b2bb16
--- /dev/null
+++ b/test/Mono.Linker.Tests.Cases/Symbols/AssemblyWithDefaultSymbols.cs
@@ -0,0 +1,15 @@
+using Mono.Linker.Tests.Cases.Expectations.Assertions;
+using Mono.Linker.Tests.Cases.Expectations.Metadata;
+
+[assembly: KeptAttributeAttribute (typeof (System.Diagnostics.DebuggableAttribute))]
+
+namespace Mono.Linker.Tests.Cases.Symbols {
+ [SetupCompileArgument ("/debug:full")]
+ [SetupLinkerLinkSymbols ("false")]
+ [RemovedSymbols ("test.exe")]
+ public class AssemblyWithDefaultSymbols {
+ static void Main ()
+ {
+ }
+ }
+} \ No newline at end of file