1 // PR c++/35323
2 // { dg-options "" }
3 
4 void foo(int);
5 
bar()6 void bar()
7 {
8   foo(1r); // { dg-error "not supported" }
9 }
10