blob: a40a2d2d8833a58977fb3a90e2abd8a5180c4d44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <locale>
// template <class Facet> const Facet& use_facet(const locale& loc);
#include <locale>
#include <cassert>
int facet_count = 0;
struct my_facet
: public std::locale::facet
{
static std::locale::id id;
bool im_alive;
my_facet() : im_alive(true) {++facet_count;}
~my_facet() {im_alive = false; --facet_count;}
};
std::locale::id my_facet::id;
int main()
{
try
{
const my_facet& f = std::use_facet<my_facet>(std::locale());
assert(false);
}
catch (std::bad_cast&)
{
}
const my_facet* fp = 0;
{
std::locale loc(std::locale(), new my_facet);
const my_facet& f = std::use_facet<my_facet>(loc);
assert(f.im_alive);
fp = &f;
assert(fp->im_alive);
assert(facet_count == 1);
}
assert(facet_count == 0);
}
|