summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/gdc260.d
blob: 4869796135aaac3747eea0939bd2885146fdc151 (plain)
1
2
3
4
5
6
7
8
9
10
// https://bugzilla.gdcproject.org/show_bug.cgi?id=260
// { dg-options "-Wall -Werror" }
// { dg-do compile }

import gcc.builtins;

char *bug260(char *buffer)
{
  return __builtin_strcat(&buffer[0], "Li");
}