summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/pragma-2.c
blob: 921f4e5eb40196f949984b97d7439ee735bb6f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Verify that preprocessor does not insert redundant newlines
   after #pragma, also check this for #include, #define and #undef */
/* { dg-do compile } */
/* { dg-options "-dD" } */
#include <stdio.h>

#undef unknow_def

int main () {

#pragma unknown
  {}
  error;
  /* { dg-error "undeclared" "undeclared-variable message" { target *-*-* } { 13 } } */
  /* { dg-message "function it appears in" "reminder message" { target *-*-* } { 13 } } */ 
}