Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/avoid_debugging
/
.
/
tests
/
other
/
test_concepts.cpp
blob: 27cf110886c6958531a64dd1049fc1d8f8958cb4 [
file
] [
log
] [
blame
] [
edit
]
#include
<concepts>
template
<
typename
T
>
concept
Test
=
std
::
destructible
<
T
>;
template
<
Test
T
>
class
MyTest
{
public
:
T value
;
};
int
main
()
{
MyTest
<int>
test
;
return
0
;
}