1// RUN: %clang_cc1 -fsyntax-only -verify %s23#include "Inputs/cuda.h"
45// expected-no-diagnostics67// Check that we can handle gnu_inline functions when compiling in CUDA mode.89voidfoo();
bar()10externinline__attribute__((gnu_inline)) voidbar() { foo(); }
11