Files
contract/example/virtual_specifiers/final_member.cpp
2017-08-28 19:49:35 -07:00

17 lines
365 B
C++
Executable File

// Copyright (C) 2008-2012 Lorenzo Caminiti
// Distributed under the Boost Software License, Version 1.0
// (see accompanying file LICENSE_1_0.txt or a copy at
// http://www.boost.org/LICENSE_1_0.txt)
// Home at http://sourceforge.net/projects/contractpp
#include "final_member.hpp"
int main ( void )
{
x().f();
y().f();
return 0;
}