aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/obj-c++.dg/embed-1.mm
blob: 630a0f81391856f759ba7e05f43e819a8d04c61d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR objc++/118586
// { dg-do compile }
// { dg-options "" }

@interface Foo
+ (int) bar: (int) firstNumber, int secondNumber, ...;
@end

void
baz (void)
{
  [Foo bar: 1, 2,
#embed __FILE__
       , -1];
}