blob: 83ac8e3026f3c421fa62950a2f8d0e246f8d9e6e [file] [log] [blame]
// { dg-do compile }
// Contributed by: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
#include <cstddef>
template <int T> struct A {};
template <void* T> struct B {};
A<NULL> a; // { dg-warning "NULL" }
B<NULL> b; // { dg-error "" }