summaryrefslogtreecommitdiff
path: root/Examples/test-suite/cpp11_ref_qualifiers_rvalue_unignore.i
blob: 2f5fadfc6f9a4316885a2c13be1ec81e1303d371 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%module cpp11_ref_qualifiers_rvalue_unignore

// This is a minimal test that does not include any C++ headers to make sure the required
// <memory> header is generated from a fragment for the generated std::move call

// m1 and m2 are ignored by default, unignore them
%feature("ignore", "0") RefQualifier::m1() &&;
%feature("ignore", "0") RefQualifier::m2() const &&;

%inline %{
struct RefQualifier {
  void m1() && {}
  void m2() const && {}
};
%}