mirror of
https://github.com/opnsense/src.git
synced 2026-03-20 09:52:44 -04:00
8 lines
185 B
C++
8 lines
185 B
C++
#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>();
|
|
}
|