summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/defaulted26.C
blob: 746fa9081802af263cba485887f60eaceaad2ced (plain)
1
2
3
4
5
6
7
// PR c++/49066
// { dg-options -std=c++0x }

void foo() = delete;		// { dg-message "declared here" }
void foo();

int main() { foo(); }		// { dg-error "deleted" }