Updated project.
[mono.git] / mcs / errors / gcs0111.cs
1 // CS0111: Class `Dictionary`2' already defines a member called `Add' with the same parameter types
2 // Line: 14
3 using System;
4 using System.Collections.Generic;
5
6 public class Dictionary<K,V>
7 {
8         public void Add (V key)
9         {
10                 throw new InvalidOperationException ();
11         }
12
13         public void Add (V value)
14         {
15                 throw new InvalidOperationException ();
16         }
17 }