//! This is not an example; this is a linker overflow detection test
//! which should fail to link due to .data overflowing FLASH.
extern crate cortex_m_rt as rt;
extern crate panic_halt;
use ptr;
use entry;
// This large static array uses most of .rodata
static RODATA: = ;
// This large mutable array causes .data to use the rest of FLASH
// without also overflowing RAM.
static mut DATA: = ;
!