aboutsummaryrefslogtreecommitdiff
path: root/test cases/rust/28 mixed/main.cc
blob: 10daae42cf0207413c02ac7c892d16ff9d7609a1 (plain)
1
2
3
4
5
#include <iostream>

extern "C" void hello_rust(void);

int main() { std::cout << "This is C++!\n"; hello_rust(); }