mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-08-27 05:31:15 -04:00
26 lines
207 B
C++
26 lines
207 B
C++
|
|
template<typename T>
|
|
class Foo {
|
|
public:
|
|
Foo();
|
|
|
|
void doBaz();
|
|
};
|
|
|
|
template<typename T>
|
|
void
|
|
Foo<T>::doBaz() {
|
|
}
|
|
|
|
class Bar {
|
|
public:
|
|
Bar();
|
|
};
|
|
|
|
template<typename T>
|
|
Foo<T>::Foo() {
|
|
}
|
|
|
|
Bar::Bar() {
|
|
}
|