]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.dg/pr90136c.d
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gdc.dg / pr90136c.d
1 // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93038
2 // { dg-do compile }
3 // { dg-options "-Wattributes" }
4
5 import gcc.attributes;
6
7 @attribute("always_inline") int sum_array(int[] input);
8 @attribute("noinline") int sum_array(int[] input);
9 // { dg-warning "ignoring attribute .noinline. because it conflicts with attribute .always_inline." "" { target *-*-* } .-1 }