* g++.dg/template/abstract-dr337.C: XFAIL.
From-SVN: r196764
This commit is contained in:
parent
d696777ea7
commit
d0d475ef30
|
@ -1,3 +1,7 @@
|
|||
2013-03-17 Jason Merrill <jason@redhat.com>
|
||||
|
||||
* g++.dg/template/abstract-dr337.C: XFAIL.
|
||||
|
||||
2013-03-16 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR c++/56607
|
||||
|
|
|
@ -6,8 +6,8 @@ class A {
|
|||
};
|
||||
|
||||
template<typename T>
|
||||
void g(T (*a)[1]) {} // { dg-error "abstract" }
|
||||
void g(T (*a)[1]) {} // { dg-error "abstract" "" { xfail *-*-* } }
|
||||
|
||||
int main() {
|
||||
g<A<int> >(0); // { dg-error "no matching function" }
|
||||
g<A<int> >(0); // { dg-error "no matching function" "" { xfail *-*-* } }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue