// Copyright 2026 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef TOOLS_CLANG_RAW_PTR_PLUGIN_TESTS_SYSTEM_QUEUE_
#define TOOLS_CLANG_RAW_PTR_PLUGIN_TESTS_SYSTEM_QUEUE_

#include <deque>

namespace std {

template <class T, class Container = std::deque<T>>
struct queue {};

}  // namespace std

#endif  // TOOLS_CLANG_RAW_PTR_PLUGIN_TESTS_SYSTEM_QUEUE_
