Skip to content
Snippets Groups Projects

Bug fixes for CCP

Merged Aaron Councilman requested to merge ccp-bugfix into main
6 files
+ 76
0
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 22
0
#![feature(future_join)]
extern crate async_std;
extern crate juno_build;
extern crate hercules_rt;
juno_build::juno!("nested_ccp");
fn main() {
async_std::task::block_on(async {
let output = unsafe {
ccp_example().await
};
println!("{}", output);
assert_eq!(output, 1.0);
});
}
#[test]
fn nested_ccp() {
main();
}
Loading