[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1591-11.cs
blobddebd2e02e6105e31ba7c8d145fde0d13bbc75cb
1 // CS1591: Missing XML comment for publicly visible type or member `Testing.IFoo.Foo()'
2 // Line: 14
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
5 using System;
7 namespace Testing
9 /// <summary>
10 /// description for interface IFoo
11 /// </summary>
12 public interface IFoo
14 void Foo ();