You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "foo.h"
|
|
void non_modular_use_of_implicit_dtor() {
|
|
implicit_dtor d1;
|
|
uninst_implicit_dtor d2;
|
|
}
|
|
void use_of_instantiated_declaration_without_definition() {
|
|
inst<int>();
|
|
}
|
|
void call_always_inline() {
|
|
always_inl();
|
|
}
|