
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
19 lines
765 B
Common Lisp
19 lines
765 B
Common Lisp
// RUN: %clang_cc1 %s -verify -pedantic -fsyntax-only
|
|
|
|
event_t glb_evt; // expected-error {{the event_t type cannot be used to declare a program scope variable}}
|
|
|
|
constant struct evt_s {
|
|
event_t evt; // expected-error {{the event_t type cannot be used to declare a structure or union field}}
|
|
} evt_str = {0};
|
|
|
|
void foo(event_t evt); // expected-note {{passing argument to parameter 'evt' here}}
|
|
|
|
void kernel ker(event_t argevt) { // expected-error {{'event_t' cannot be used as the type of a kernel parameter}}
|
|
event_t e;
|
|
constant event_t const_evt; // expected-error {{the event_t type can only be used with __private address space qualifier}}
|
|
foo(e);
|
|
foo(0);
|
|
foo(5); // expected-error {{passing 'int' to parameter of incompatible type 'event_t'}}
|
|
}
|
|
|