
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
467 B
C++
38 lines
467 B
C++
template<class T>
|
|
struct X0 {
|
|
T getValue(T arg);
|
|
};
|
|
|
|
template<int I>
|
|
struct X1;
|
|
|
|
template<long I>
|
|
struct X2;
|
|
|
|
template<typename>
|
|
struct X3;
|
|
|
|
template<template<int I> class>
|
|
struct X4;
|
|
|
|
template<template<int I> class>
|
|
struct X5;
|
|
|
|
template<template<int I> class>
|
|
struct X6;
|
|
|
|
typedef int Integer;
|
|
extern X0<Integer> *x0i;
|
|
extern X0<float> *x0f;
|
|
extern X0<double> *x0r;
|
|
|
|
template<>
|
|
struct X0<char> {
|
|
int member;
|
|
};
|
|
|
|
template<>
|
|
struct X0<wchar_t> {
|
|
float member;
|
|
};
|