Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 5dbe107

Browse files
committed
test for rust-lang#3128
1 parent dd7add7 commit 5dbe107

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

tests/source/extern.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ extern crate bar;
1414
extern crate proc_macro2;
1515
extern crate proc_macro;
1616

17+
// #3128
18+
extern crate serde; // 1.0.78
19+
extern crate serde_derive; // 1.0.78
20+
extern crate serde_json; // 1.0.27
21+
1722
extern "C" {
1823
fn c_func(x: *mut *mut libc::c_void);
1924

tests/target/extern.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ extern crate foo;
1414
extern crate proc_macro;
1515
extern crate proc_macro2;
1616

17+
// #3128
18+
extern crate serde; // 1.0.78
19+
extern crate serde_derive; // 1.0.78
20+
extern crate serde_json; // 1.0.27
21+
1722
extern "C" {
1823
fn c_func(x: *mut *mut libc::c_void);
1924

0 commit comments

Comments
 (0)