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

UnusedDelegateGetsRemoved.cs « Basic « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d366e718e90ba8f2e943382762fca19b744def88 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Mono.Linker.Tests.Cases.Basic {
	class UnusedDelegateGetsRemoved {
		static void Main ()
		{
		}

		public delegate void Foo ();
	}
}