using2.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 26 行

C
26
字号
// { dg-do run }// Copyright (C) 2002 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 15 Sep 2002 <nathan@codesourcery.com>// PR 7919. Methods found via using decls didn't have their this// pointers converted to the final base type.struct Base {  int m;  protected:  void *Return () { return this; }};struct Derived : Base {  using Base::Return;  virtual ~Derived () {}};int main (){  Derived d;    return static_cast <Base *> (&d) != d.Return ();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?