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:
authorJoel Martinez <joelmartinez@gmail.com>2017-03-30 20:15:44 +0300
committerJoel Martinez <joelmartinez@gmail.com>2017-03-30 20:15:44 +0300
commit69d07c2039b1b058697ea1ad47e50529c112467c (patch)
treeffb5cd49da0e528c9b668aac2a07d92e57ee6d7a /mdoc/Test
parenta0b8f468b11f5dc3e7ebae4a892ee9a055b37e31 (diff)
WIP: now matching mismatched generic type namesmdoc-typeparam-alternate
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
}
}