view gcc/testsuite/g++.dg/ext/no-gnu-keywords-1.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 }
// { dg-options "-fno-gnu-keywords" }

// Verify that the keyword asm is recognized and that the GNU
// extension typeof is not recognized as a keyword when using
// -fno-gnu-keywords.

int asm;	// { dg-error "before .asm." }
int typeof;	// { dg-bogus "before .typeof." }