summaryrefslogtreecommitdiffstats
path: root/tests/roots/test-domain-cpp/multi-decl-lookup.rst
diff options
context:
space:
mode:
Diffstat (limited to 'tests/roots/test-domain-cpp/multi-decl-lookup.rst')
-rw-r--r--tests/roots/test-domain-cpp/multi-decl-lookup.rst24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/roots/test-domain-cpp/multi-decl-lookup.rst b/tests/roots/test-domain-cpp/multi-decl-lookup.rst
new file mode 100644
index 0000000..9706d18
--- /dev/null
+++ b/tests/roots/test-domain-cpp/multi-decl-lookup.rst
@@ -0,0 +1,24 @@
+.. default-domain:: cpp
+
+.. namespace:: multi_decl_lookup
+
+.. function:: void f1(int a)
+ void f1(double b)
+
+ - a: :var:`a`
+ - b: :var:`b`
+
+.. function:: template<typename T> void f2(int a)
+ template<typename U> void f2(double b)
+
+ - T: :type:`T`
+ - U: :type:`U`
+
+
+.. class:: template<typename T> A
+ template<typename U> B
+
+ .. function:: void f3()
+
+ - T: :type:`T`
+ - U: :type:`U`