David Majnemer | 8f77453 | 2014-03-04 05:38:05 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -std=c++1y -fms-extensions -emit-llvm %s -o - -triple=i386-pc-win32 | FileCheck %s |
2 | |||||
3 | template <typename> int x = 0; | ||||
4 | |||||
5 | // CHECK: "\01??$x@X@@3HA" | ||||
6 | template <> int x<void>; | ||||
7 | // CHECK: "\01??$x@H@@3HA" | ||||
8 | template <> int x<int>; |