view gcc/testsuite/g++.dg/warn/noreturn-8.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

// PR c++/60364
// { dg-do compile { target c++11 } }
// { dg-options "-Wpedantic" }

void f (); // { dg-message "previous declaration" }
void f [[noreturn]] (); // { dg-error "declared '\\\[\\\[noreturn\\\]\\\]' but its first declaration was not" }

void f2 ();
void f2 [[gnu::noreturn]] ();

void f3 ();
__attribute__((noreturn)) void f3 ();

void f4 () { __builtin_abort (); } // { dg-message "previous declaration" }
void f4 [[noreturn]] (); // { dg-error "declared '\\\[\\\[noreturn\\\]\\\]' but its first declaration was not" }

void f5 () { __builtin_abort (); }
void f5 [[gnu::noreturn]] ();

void f6 () { __builtin_abort (); }
__attribute__((noreturn)) void f6 ();