From 8270a0ca766ea834032daeb67c7f32a1947ab3bd Mon Sep 17 00:00:00 2001 From: Jeff Waugh Date: Tue, 15 Nov 2016 14:37:20 +1100 Subject: Transition to libbindgen sub-crate - The root crate is the `bindgen` binary - Rust-ify the test suite, no more subprocesses! - Update Travis config to test both crates --- tests/headers/class_nested.hpp | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 tests/headers/class_nested.hpp (limited to 'tests/headers/class_nested.hpp') diff --git a/tests/headers/class_nested.hpp b/tests/headers/class_nested.hpp deleted file mode 100644 index ab38d500..00000000 --- a/tests/headers/class_nested.hpp +++ /dev/null @@ -1,24 +0,0 @@ -class A { -public: - int member_a; - class B { - int member_b; - }; -}; - -A::B var; - -class D { - A::B member; -}; - -template -class Templated { - T member; - - class Templated_inner { - public: - T* member_ptr; - void get() {} - }; -}; -- cgit v1.2.3