1// Copyright (c) 2013 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.
4
5#include "scoped_refptr.h"
6
7struct Foo {
8  int dummy;
9};
10
11// An example of an unsafe conversion, where the object is freed by the time the
12// function returns.
13scoped_refptr<Foo> GetBuggyFoo();
14
15scoped_refptr<Foo> GetBuggyFoo() {
16  scoped_refptr<Foo> unsafe(new Foo);
17  return unsafe;
18}
19