Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
00001 #include <stdio.h> 00002 #include "mbed.h" 00003 00004 #define MALLOC_SIZE 0x2000 00005 00006 class C2: Base 00007 { 00008 public: 00009 C2(int a){_a=a;} 00010 private: 00011 int _a; 00012 }; 00013 00014 C2 a(1); 00015 C2 b(2); 00016 00017 int main() { 00018 printf("doing test\n"); 00019 malloc(MALLOC_SIZE); 00020 malloc(MALLOC_SIZE); 00021 malloc(MALLOC_SIZE); 00022 malloc(MALLOC_SIZE); 00023 printf("finished\n"); 00024 }
Generated on Thu Jul 14 2022 02:08:57 by
1.7.2