You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
556 B
11 lines
556 B
4 months ago
|
// RUN: rm -rf %t
|
||
|
// RUN: %clang_cc1 -x c++ -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -I %S/Inputs/libc-libcxx/include/c++ -I %S/Inputs/libc-libcxx/include %s -verify
|
||
|
// RUN: rm -rf %t
|
||
|
// RUN: %clang_cc1 -x c++ -fmodules-cache-path=%t -fmodules -fimplicit-module-maps -fmodules-local-submodule-visibility -nostdinc++ -isystem %S/Inputs/libc-libcxx/sysroot/usr/include/c++/v1 -isystem %S/Inputs/libc-libcxx/sysroot/usr/include -fsyntax-only %s -verify
|
||
|
// expected-no-diagnostics
|
||
|
|
||
|
#include "math.h"
|
||
|
|
||
|
int n = abs(0);
|
||
|
float f = abs<float>(0.f);
|