1*47dbacbcSAlexander Shaposhnikov // RUN: %check_clang_tidy -std=c++98 %s modernize-use-equals-default %t 2*47dbacbcSAlexander Shaposhnikov 3*47dbacbcSAlexander Shaposhnikov struct S { SS4*47dbacbcSAlexander Shaposhnikov S() {} 5*47dbacbcSAlexander Shaposhnikov // CHECK-FIXES: S() {} ~SS6*47dbacbcSAlexander Shaposhnikov ~S() {} 7*47dbacbcSAlexander Shaposhnikov // CHECK-FIXES: ~S() {} 8*47dbacbcSAlexander Shaposhnikov }; 9