view gcc/testsuite/obj-c++.dg/method-3.mm @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* Do not warn about "slightly" mismatched method signatures if 
   -Wstrict-selector-match is off.  */

/* { dg-do compile } */
/* { dg-options "-Wno-strict-selector-match" } */

#include <objc/objc.h>

@interface Base
- (id) meth1: (Base *)arg1;
- (id) window;
@end

@interface Derived: Base
- (id) meth1: (Derived *)arg1;
- (Base *) window;
@end

void foo(void) {
  id r;

  [r meth1:r];
  [r window];
}