1 // { dg-additional-options -fmodule-header }
2 // { dg-module-cmi {} }
3 
4 template<typename _CharT>
5 static inline __attribute__((__always_inline__)) constexpr void
__constant_char_array_p()6 __constant_char_array_p ()
7 {
8 }
9 
foo()10 inline void foo ()
11 {
12   __constant_char_array_p<char> ();
13 }
14