blob: 52db15c24a0830521506ae91ca3046e7ed80a4ed [file] [log] [blame]
Douglas Gregor3e80d8a2012-01-29 20:52:14 +00001// RUN: rm -rf %t
Douglas Gregore5c9e092012-01-29 22:47:19 +00002// RUN: %clang -fsyntax-only -fmodules -fmodule-cache-path %t -Xclang -verify %s
Douglas Gregor3e80d8a2012-01-29 20:52:14 +00003
4@import __compiler_builtins.float_constants;
5
6float getFltMax() { return FLT_MAX; }
7
8@import __compiler_builtins.limits;
9
10char getCharMax() { return CHAR_MAX; }
11
Douglas Gregor5ad26492012-01-29 22:35:57 +000012size_t size; // expected-error{{unknown type name 'size_t'}}