summaryrefslogtreecommitdiff
path: root/tests/headers/generate-inline.hpp
blob: 922ee1ca7cad697b28b5b5b1ab94ae0bf5ea3010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// bindgen-flags: --generate-inline-functions

class Foo {
 public:
  static inline int bar() {
    return 42;
  }
};

inline int foo() {
  return 42;
}