Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs0171-4.cs
blob8f909cedfb6ed6b73c2522e2d1786b66016bc8ec
1 // CS0171: Field `S<TKey>.key' must be fully assigned before control leaves the constructor
2 // Line: 13
4 public struct S<TKey> {
5 internal TKey key;
7 public TKey Key {
8 get { return key; }
9 private set { key = value; }
12 public S (TKey key)
14 Key = key;