view gcc/testsuite/g++.dg/other/pr43116.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-do compile } */
extern "C" int rpl_open (const char *filename, int flags, ...) __attribute__
((__nonnull__ (1)));

namespace gnulib
{
    int (*const open) (const char *filename, int flags, ...) __attribute__
	((__nonnull__ (1))) = rpl_open;
}