[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / tests / test-xml-036.cs
1 // Compiler options: -doc:xml-036.xml -warn:1 -warnaserror
2 /// <summary><see cref="@true" />, <see cref="Test.@true" />, <see cref="@Whatever" /></summary>
3 public enum Test {
4         /// <summary>Yes</summary>
5         @true,
6         /// <summary>Nope</summary>
7         @false,
8         /// <summary>Maybe</summary>
9         Whatever
10 }
11
12 /// <summary><see cref="Foo.@true" /></summary>
13 public abstract class Foo {
14         /// <summary>Foo</summary>
15         public abstract void @true();
16         /// main.
17         public static void Main() {}
18 }