xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/nonconst-init.cpp (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -emit-llvm -o - %s | FileCheck %s
2 
3 int a();
4 // CHECK: call i32 @_Z1av()
5 struct x {int x, y : 10;} x = {1, a()};
6