Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-xml-074.cs
1 // Compiler options: -warnaserror -doc:xml-074.xml
2 using System.Collections.Generic;
3
4  /// <summary>The Test</summary>
5  public class Test
6  {
7         /// <summary>The Foo</summary>
8         protected Dictionary<string, object> Foo { get; set; } = new Dictionary<string, object>();
9
10         /// <summary>Tests the Foo</summary>
11         protected bool TestFoo;
12
13         static void Main ()
14         {
15         }
16  }