blob: cd40ccc3748a6ad4923f2d7d05a2d274c3fa7e5f [file] [log] [blame]
Eli Friedman924d5c92012-11-14 23:57:08 +00001// RUN: %clang_cc1 -fsyntax-only %s -std=c++98 2>&1 | FileCheck %s
2
3namespace PR14342 {
4 template<typename T, char a> struct X {};
5 X<int, 1> x = X<long, 257>();
6 // CHECK: error: no viable conversion from 'X<long, [...]>' to 'X<int, [...]>'
7}