OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 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 "base/basictypes.h" |
| 6 #include "base/memory/scoped_ptr.h" |
| 7 |
| 8 namespace { |
| 9 |
| 10 class Parent { |
| 11 }; |
| 12 |
| 13 class Child : public Parent { |
| 14 }; |
| 15 |
| 16 } // namespace |
| 17 |
| 18 #if defined(NCTEST_NO_PASSAS_DOWNCAST) // [r"invalid conversion from"] |
| 19 |
| 20 scoped_ptr<Child> DowncastUsingPassAs(scoped_ptr<Parent> object) { |
| 21 return object.PassAs<Child>(); |
| 22 } |
| 23 |
| 24 #endif |
OLD | NEW |