xref: /aosp_15_r20/external/clang/test/CodeGenCXX/cxx0x-initializer-scalars.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -std=c++11 -S -emit-llvm -o - %s | FileCheck %s
2 
f()3 void f()
4 {
5   // CHECK: store i32 0
6   int i{};
7 }
8