Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mdoc/Test
diff options
context:
space:
mode:
Diffstat (limited to 'mdoc/Test')
-rw-r--r--mdoc/Test/DocTest-framework-inheritance.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mdoc/Test/DocTest-framework-inheritance.cs b/mdoc/Test/DocTest-framework-inheritance.cs
index 675541ca..26e7d89c 100644
--- a/mdoc/Test/DocTest-framework-inheritance.cs
+++ b/mdoc/Test/DocTest-framework-inheritance.cs
@@ -23,6 +23,11 @@ namespace MyNamespace {
#if FXONE
public override string AllVirtual { get { return ""; } }
+
+ public S GenericMeth<S>(S value) {return default(S); }
+ #endif
+ #if FXTWO
+ public T GenericMeth<T>(T value) {return default(T); }
#endif
}
}