blob: eb87a0744b8d170ff7d8bc760a5b6be571aa4c5e [file] [log] [blame]
Torne (Richard Coles)6e8cce62014-08-19 13:00:08 +01001// 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
11struct Bar : public Foo {
12 int another_dummy;
13};
14
15// Ensure that the correct cast (the user-defined cast) is converted.
16void ExpectsRawFooPtr(Foo* foo) {
17 Foo* temp = foo;
18}
19
20void CallExpectsRawFooPtrWithBar() {
21 scoped_refptr<Bar> temp(new Bar);
22 ExpectsRawFooPtr(temp);
23}