brintos

brintos / llvm-project-archived public Read only

0
0
Text · 157 B · d43c1e5 Raw
9 lines · cpp
1// RUN: %check_clang_tidy -std=c++98 %s modernize-use-equals-default %t2 3struct S {4  S() {}5  // CHECK-FIXES: S() {}6  ~S() {}7  // CHECK-FIXES: ~S() {}8};9