2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-09-25 16:51:35 -05:00
|
|
|
#![allow(unused_variables)]
|
2015-02-12 09:29:52 -06:00
|
|
|
use std::marker::PhantomData;
|
|
|
|
|
2014-12-07 09:22:06 -06:00
|
|
|
fn main() {
|
2015-02-12 09:29:52 -06:00
|
|
|
struct Symbol<'a, F: Fn(Vec<&'a str>) -> &'a str> { function: F, marker: PhantomData<&'a ()> }
|
2015-03-18 08:22:38 -05:00
|
|
|
let f = |x: Vec<&str>| -> &str { "foobar" };
|
2015-02-12 09:29:52 -06:00
|
|
|
let sym = Symbol { function: f, marker: PhantomData };
|
2014-12-07 09:22:06 -06:00
|
|
|
(sym.function)(vec![]);
|
|
|
|
}
|