// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "make_unique_gc_object.h" namespace blink { void DisallowedUseOfUniquePtr() { auto owned_base = std::make_unique(); auto owned_base_array = std::make_unique(1); auto owned_derived = std::make_unique(); auto owned_mixin = base::WrapUnique(static_cast(nullptr)); } } // namespace blink