[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs1574-3.cs
blob1cfeec32a146b0c6b034566828e18dbb1a873b9e
1 // CS1574: XML comment on `Test' has cref attribute `Test.Foo(int)' that could not be resolved
2 // Line: 8
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
5 using System;
7 /// <see cref="Test.Foo(int)"/> Test has Foo, but is property that has no args.
8 public class Test
10 string Foo {
11 get { return null; }