16 lines · cpp
1// RUN: %clang_analyze_cc1 -analyzer-checker=core,unix,debug.ExprInspection -verify %s2 3// RUN: %clang_analyze_cc1 -analyzer-checker=core,unix,alpha.unix,debug.ExprInspection -verify %s4//5// expected-no-diagnostics6 7#include "Inputs/system-header-simulator-cxx.h"8 9void test_std_getline() {10 std::string userid, comment;11 // MallocChecker should not confuse the POSIX function getline() and the12 // unrelated C++ standard library function std::getline.13 std::getline(std::cin, userid, ' '); // no-crash14 std::getline(std::cin, comment); // no-crash15}16