//===- llvm/unittest/ADT/CountCopyAndMove.cpp - Optional unit tests -------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "CountCopyAndMove.h" usingnamespacellvm; int CountCopyAndMove::DefaultConstructions = …; int CountCopyAndMove::ValueConstructions = …; int CountCopyAndMove::CopyConstructions = …; int CountCopyAndMove::CopyAssignments = …; int CountCopyAndMove::MoveConstructions = …; int CountCopyAndMove::MoveAssignments = …; int CountCopyAndMove::Destructions = …;