Files
clang-uml/tests/t00065/module2/module2.h
2023-05-28 18:38:57 +02:00

22 lines
247 B
C++

#pragma once
#include "concepts/concepts.h"
namespace clanguml {
namespace t00065 {
struct B {
B() = default;
void b() { }
};
template <typename T> struct C {
T *t;
};
template <bconcept T> struct D {
T t;
C<int> c;
};
}
}