2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0171.cs
blobf6127ab5067ab3fd8d9ed5f98a1fb22f9d1696f3
1 // CS0171: Field `S<TKey>.key' must be fully assigned before control leaves the constructor
2 // Line: 13
4 public struct S<TKey> {
5 private TKey key;
7 public TKey Key {
8 get { return key; }
9 private set { key = value; }
12 public S (TKey key)
14 Key = key;