Use the correct visibility

This commit is contained in:
Oliver Schneider 2018-07-13 20:43:08 +02:00
parent c946c2539e
commit 61414fd6c1
3 changed files with 41 additions and 6 deletions

View file

@ -17,6 +17,10 @@ fn some_internal_fn() -> u32 {
1
}
fn other_internal_fn() -> u32 {
1
}
// See #40839
pub fn return_closure_accessing_internal_fn() -> impl Fn() -> u32 {
|| {
@ -25,5 +29,5 @@ pub fn return_closure_accessing_internal_fn() -> impl Fn() -> u32 {
}
pub fn return_internal_fn() -> impl Fn() -> u32 {
some_internal_fn
other_internal_fn
}

View file

@ -0,0 +1,35 @@
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// compile-pass
#![deny(warnings)]
use std::collections::BTreeMap;
pub struct RangeMap {
map: BTreeMap<Range, u8>,
}
#[derive(Eq, PartialEq, Ord, PartialOrd)]
struct Range;
impl RangeMap {
fn iter_with_range<'a>(&'a self) -> impl Iterator<Item = (&'a Range, &'a u8)> + 'a {
self.map.range(Range..Range)
}
pub fn iter<'a>(&'a self) -> impl Iterator<Item = &'a u8> + 'a {
self.iter_with_range().map(|(_, data)| data)
}
}
fn main() {}