Home
last modified time | relevance | path

Searched refs:static_a (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dwarn-pessmizing-move.cpp79 static A static_a; in test3() local
80 return static_a; in test3()
81 return std::move(static_a); in test3()
/llvm-project-15.0.7/clang/test/Analysis/
H A Duse-after-move.cpp504 static A static_a; member in memberVariablesTest
513 b = std::move(static_a); // aggressive-note {{Object 'static_a' is moved}} in f()
514 static_a.foo(); // aggressive-warning {{Method called on moved-from object 'static_a'}} in f()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Duse-after-move.cpp512 static A static_a; member in IgnoreMemberVariables
518 std::move(static_a); in f()
519 static_a.foo(); in f()