• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-unstable
2 
3 /** The point of this test is to _not_ generate these functions. */
4 
myadd(const int x,const int y)5 inline static int myadd(const int x, const int y) { return x + y; }
mysub(const int x,const int y)6 static int mysub(const int x, const int y) { return x - y; }
7