blob: 5a87be79e1d0d5a9826e339ee5c85af23d84d830 [file] [log] [blame]
// Copyright 2020 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.
class SomeClass;
SomeClass* GetPointer();
class MyClass {
// Expected rewrite: raw_ptr<SomeClass> raw_ptr_field = GetPointer();
SomeClass* raw_ptr_field = GetPointer();
};