Prevent multiple pending UpdatePolicy tasks.
[chromium-blink-merge.git] / tools / clang / rewrite_scoped_refptr / tests / const-scoped_refptr&-to-raw-adds-get-original.cc
blob9b799d5ef577eae6377e558c9b7d52306833f1fe
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "scoped_refptr.h"
7 class Foo {
8 int dummy;
9 };
11 class Bar {
12 public:
13 const scoped_refptr<Foo>& foo() const { return foo_; }
15 private:
16 scoped_refptr<Foo> foo_;
19 void TestFunction() {
20 Bar b;
21 Foo* f = b.foo();