blob: 618cb5f7dea2da0f9132dcc40c655835ac8742cb [file] [log] [blame]
// { dg-do assemble }
// GROUPS passed temps
// temps file
// Date: Mon, 07 Sep 1992 13:12:28 EDT
// From: richard@ttt.kth.se
// { dg-options "-fpermissive" }
struct foo
{
char *s;
foo(char *x) { s=x; }
};
struct cookie
{
foo * v;
cookie ( foo * x) { v=x; }
};
cookie cat(&foo("apabepa"));// { dg-warning "deprecated conversion|forbids converting a string constant" "dep" }
// { dg-warning "13:taking address of rvalue" "add" { target *-*-* } .-1 }