chromium/tools/clang/rewrite_templated_container_fields/tests/path-filter-file-expected.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <vector>

class SomeClass;

struct MyStruct {
  // No rewrite expected - this whole source file is mentioned in the
  // tests/paths-to-ignore.txt file.
  std::vector<SomeClass*> ptr_field_;
};