Skip to content

Commit 6b4e203

Browse files
committed
test: return based sfinae
fix #849
1 parent 3777824 commit 6b4e203

File tree

5 files changed

+109
-0
lines changed

5 files changed

+109
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source-root: .
2+
input:
3+
- .
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
= Reference
2+
:mrdocs:
3+
4+
[#index]
5+
== Global namespace
6+
7+
8+
=== Functions
9+
10+
[cols=1]
11+
|===
12+
| Name
13+
14+
| <<f,`f`>>
15+
|===
16+
17+
[#f]
18+
== f
19+
20+
21+
=== Synopsis
22+
23+
24+
Declared in `&lt;return&hyphen;based&period;cpp&gt;`
25+
26+
[source,cpp,subs="verbatim,replacements,macros,-callouts"]
27+
----
28+
template&lt;typename T&gt;
29+
int
30+
f()
31+
requires std&colon;&colon;is&lowbar;class&lowbar;v&lt;T&gt;;
32+
----
33+
34+
35+
36+
[.small]#Created with https://www.mrdocs.com[MrDocs]#
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// issue #849
2+
3+
#include <type_traits>
4+
5+
template <typename T>
6+
std::enable_if_t<std::is_class_v<T>, int> f();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<html lang="en">
2+
<head>
3+
<title>Reference</title>
4+
</head>
5+
<body>
6+
<div>
7+
<h1>Reference</h1>
8+
<div>
9+
<div>
10+
<h2 id="index">Global namespace</h2>
11+
</div>
12+
<h2>Functions</h2>
13+
<table style="table-layout: fixed; width: 100%;">
14+
<thead>
15+
<tr>
16+
<th>Name</th>
17+
</tr>
18+
</thead>
19+
<tbody>
20+
<tr>
21+
<td><a href="#f"><code>f</code></a> </td></tr>
22+
</tbody>
23+
</table>
24+
</div>
25+
<div>
26+
<div>
27+
<h2 id="f">f</h2>
28+
</div>
29+
<div>
30+
<h3>Synopsis</h3>
31+
<div>
32+
Declared in <code>&lt;return-based.cpp&gt;</code></div>
33+
<pre>
34+
<code class="source-code cpp">
35+
template&lt;typename T&gt;
36+
int
37+
f()
38+
requires std::is_class_v&lt;T&gt;;
39+
</code>
40+
</pre>
41+
</div>
42+
</div>
43+
44+
</div>
45+
<div>
46+
<h4>Created with <a href="https://www.mrdocs.com">MrDocs</a></h4>
47+
</div>
48+
</body>
49+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<mrdocs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://github.com/cppalliance/mrdocs/raw/develop/mrdocs.rnc">
4+
<namespace id="//////////////////////////8=">
5+
<template>
6+
<tparam name="T" class="type"/>
7+
<function name="f" requires="std::is_class_v&lt;T&gt;" id="+zl/sg3GXOLbrJGwRx2qkepftDY=">
8+
<file short-path="return-based.cpp" source-path="return-based.cpp" line="5"/>
9+
<return>
10+
<type name="int"/>
11+
</return>
12+
</function>
13+
</template>
14+
</namespace>
15+
</mrdocs>

0 commit comments

Comments
 (0)