2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-xml-042.cs
blob0e6dc987930a1482621e80da3f72516d592ba449
1 using System;
3 namespace TestNamespace
5 /// <summary>
6 /// <see cref="FunctionWithParameter" />
7 /// </summary>
8 class TestClass
10 public static void Main () {}
11 /// <summary>
12 /// Function with wrong generated parameter list in XML documentation. There is missing @ after System.Int32
13 /// </summary>
14 public void FunctionWithParameter( ref int number, out int num2)
16 num2 = 0;
17 number = 1;