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

cs1572.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27d80d7c0ee894764fa8b109991b0e9bfed07ef6 (plain)
1
2
3
4
5
6
7
8
9
// Compiler options: -doc:dummy.xml -warn:2 -warnaserror
namespace Testing
{
	public class Test
	{
		/// <param name='mismatch'>mismatch</param>
		public void Baz (int i) {}
	}
}