[ELF] Avoid make in elf::writeARMCmseImportLib
[llvm-project.git] / clang / test / Analysis / getline-cpp.cpp
blobef9d3186009c7fa4920368f7ab27910562d71acf
1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,unix,debug.ExprInspection -verify %s
3 // RUN: %clang_analyze_cc1 -analyzer-checker=core,unix,alpha.unix,debug.ExprInspection -verify %s
4 //
5 // expected-no-diagnostics
7 #include "Inputs/system-header-simulator-cxx.h"
9 void test_std_getline() {
10 std::string userid, comment;
11 // MallocChecker should not confuse the POSIX function getline() and the
12 // unrelated C++ standard library function std::getline.
13 std::getline(std::cin, userid, ' '); // no-crash
14 std::getline(std::cin, comment); // no-crash