comparison clang/test/Analysis/complex-init-list.cpp @ 150:1d019706d866

LLVM10
author anatofuz
date Thu, 13 Feb 2020 15:10:13 +0900
parents
children
comparison
equal deleted inserted replaced
147:c2174574ed3a 150:1d019706d866
1 // RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-output=text -verify %s
2 // expected-no-diagnostics
3
4 // Do not crash on initialization to complex numbers.
5 void init_complex() {
6 _Complex float valid1 = { 0.0f, 0.0f };
7 }