
I think there must be a bug in git-llvm causing parent directories to be deleted when the diff deletes files in a subdirectory. Perhaps it is Windows-only. There has been a behavior change, so some of these tests now fail. I have marked them XFAIL and will fix them in a follow-up to separate the changes. llvm-svn: 360699
38 lines
501 B
C++
38 lines
501 B
C++
template<typename T>
|
|
struct X0 {
|
|
T getValue(T arg) { return arg; }
|
|
};
|
|
|
|
template<int I>
|
|
struct X1;
|
|
|
|
template<int I>
|
|
struct X2;
|
|
|
|
template<int I>
|
|
struct X3;
|
|
|
|
template<template<int I> class>
|
|
struct X4;
|
|
|
|
template<template<long> class>
|
|
struct X5;
|
|
|
|
template<typename>
|
|
struct X6;
|
|
|
|
extern X0<int> *x0i;
|
|
extern X0<long> *x0l;
|
|
extern X0<float> *x0r;
|
|
|
|
template<>
|
|
struct X0<char> {
|
|
int member;
|
|
char getValue(char ch) { return static_cast<char>(member); }
|
|
};
|
|
|
|
template<>
|
|
struct X0<wchar_t> {
|
|
int member;
|
|
};
|