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