diff options
Diffstat (limited to 'clang/test/CodeGenCXX/references.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/references.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/references.cpp b/clang/test/CodeGenCXX/references.cpp index afcaaf2d7c1..9b9e0f8623b 100644 --- a/clang/test/CodeGenCXX/references.cpp +++ b/clang/test/CodeGenCXX/references.cpp @@ -44,6 +44,8 @@ void test_scalar() { void test_complex() { _Complex int a = 10i; f(a); + + f(10i); } void test_aggregate() { |