| commit | 0f654ffeb0037fba4aadaa098e163434406a3fd5 | [log] [tgz] |
|---|---|---|
| author | Joel Galenson <jgalenson@google.com> | Mon May 04 20:04:21 2020 -0700 |
| committer | Joel Galenson <jgalenson@google.com> | Mon May 04 20:04:21 2020 -0700 |
| tree | 667d7ce583a8767338a306663bb4db962c61e8f2 | |
| parent | 905eb2e1f5307f64850503ca1f46101239dabf17 [diff] [blame] |
Fix previous commit.
diff --git a/tests/ffi/tests.h b/tests/ffi/tests.h index d3b7d38..795b4a9 100644 --- a/tests/ffi/tests.h +++ b/tests/ffi/tests.h
@@ -23,6 +23,11 @@ std::vector<uint8_t> v; }; +enum COwnedEnum { + CVal1, + CVal2, +}; + size_t c_return_primitive(); Shared c_return_shared(); rust::Box<R> c_return_box();