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

InvalidArguments.cs « CommandLine « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22f21400a2d9275dc7276bd5ae4e43beb912f165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Mono.Linker.Tests.Cases.Expectations.Assertions;
using Mono.Linker.Tests.Cases.Expectations.Metadata;

namespace Mono.Linker.Tests.Cases.CommandLine
{
	[SetupLinkerArgument ("--verbose", "--invalidArgument")]
	[LogContains ("Unrecognized command-line option")]
	[NoLinkedOutput]
	public class InvalidArguments
	{
		public static void Main ()
		{
		}
	}
}