Updated t00065 test case

This commit is contained in:
Bartek Kryza
2023-05-24 22:23:03 +02:00
parent 75c027262f
commit c3dcac72da
6 changed files with 42 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
namespace clanguml {
namespace t00065 {
template <typename T>
concept bconcept = requires(T t) {
T{};
t.b();
};
}
}