Updated t00065 test case
This commit is contained in:
13
tests/t00065/module2/concepts/concepts.h
Normal file
13
tests/t00065/module2/concepts/concepts.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
namespace clanguml {
|
||||
namespace t00065 {
|
||||
|
||||
template <typename T>
|
||||
concept bconcept = requires(T t) {
|
||||
T{};
|
||||
t.b();
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user