Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-xml-032.cs
1 // Compiler options: -doc:xml-032.xml -warn:4 -warnaserror
2 using System;
3
4 class Test
5 {
6         /// <exception cref="ArgumentNullException"><paramref name="wrongref" /> is <see langword="null" />.</exception>
7         /// <exception cref="ArgumentOutOfRangeException"><paramref name="wrongRefAgain" /> is a zero-length <see cref="string" />.</exception>
8         protected Test(string name) 
9         {
10         }
11
12         static void Main () {}
13 }
14