aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc.dg/embed-1.m
blob: 6e6877c104de8cdcc5cdae8d3233803a7a9e4bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR objc++/118586 */
/* { dg-do compile } */

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

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