Roll src/third_party/WebKit f36d5e0:68b67cd (svn 193299:193303)
[chromium-blink-merge.git] / tools / clang / rewrite_scoped_refptr / tests / const-scoped_refptr&-to-raw-adds-get-expected.cc
blob87624c0e1f7d01dd87c55dd4044ae2220b7d0253
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().get();