2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1501-3.cs
bloba8f4e9e1a5f2806bffea9f578b695ba025546cb7
1 // CS1501: No overload for method `Foo' takes `0' arguments
2 // Line: 15
4 class Base<T>
6 protected virtual void Foo<U> (U u)
11 class Derived<T> : Base<int>
13 protected override void Foo<U> (U u)
15 base.Foo ();