[mcs] Branch visited labels cache for conditional block. Fixes #44751
[mono.git] / mcs / errors / cs0111-21.cs
1 // CS0111: A member `Dictionary<K,V>.Add(V)' is already defined. Rename this member or use different parameter types
2 // Line: 14
3
4 using System;
5 using System.Collections.Generic;
6
7 public class Dictionary<K,V>
8 {
9         public void Add (V key)
10         {
11                 throw new InvalidOperationException ();
12         }
13
14         public void Add (V value)
15         {
16                 throw new InvalidOperationException ();
17         }
18 }