1 // RUN: %cheri_purecap_cc1 -emit-llvm -o - %s | FileCheck %s
2 
3 class time_point {
4   public:
5     // CHECK: call void @_ZN10time_pointC1Ev(%class.time_point addrspace(200)* @t1)
time_point()6     time_point() { }
7 };
8 
9 time_point t1;
10