blob: 3371640b4ec7c8528c148aa28a54e9737576b89c [file] [log] [blame]
#include <boost/smart_ptr.hpp>
struct foo{
int x;
};
int main(int argc, char** argv){
boost::shared_ptr<foo> fooptr;
return 0;
}