blob: 5445d4c4fec7a36e775fdddf7f8c6d0e2b0783fc (
plain)
1
2
3
4
5
6
7
8
9
|
/* Test that missing headers are fatal errors. PR 15638. */
/* { dg-do compile } */
/* { dg-options "" } */
#include "nonexistent.h" /* { dg-error "nonexistent.h" } */
/* { dg-message "terminated" "" { target *-*-* } 0 } */
/* This declaration should not receive any diagnostic. */
foo bar;
|