blob: 061a55b03b21884ba097dc0ea71dcff9c4a39f03 [file] [log] [blame]
// Copyright 2016 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.
// aux-build:issue_39823.rs
extern crate issue_39823;
use issue_39823::{RemoteC, RemoteG};
#[derive(Debug, PartialEq)]
struct LocalC(u32);
#[derive(Debug, PartialEq)]
struct LocalG<T>(T);
fn main() {
let virtual_localc : &Fn(_) -> LocalC = &LocalC;
assert_eq!(virtual_localc(1), LocalC(1));
let virtual_localg : &Fn(_) -> LocalG<u32> = &LocalG;
assert_eq!(virtual_localg(1), LocalG(1));
let virtual_remotec : &Fn(_) -> RemoteC = &RemoteC;
assert_eq!(virtual_remotec(1), RemoteC(1));
let virtual_remoteg : &Fn(_) -> RemoteG<u32> = &RemoteG;
assert_eq!(virtual_remoteg(1), RemoteG(1));
}